mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [eslint] re-enable no-extra-semi and quotes rules * [eslint] update to version 0.2.2 of eslint config * [eslint] autofix
8 lines
403 B
JavaScript
8 lines
403 B
JavaScript
export default function (grunt) {
|
|
grunt.registerTask('_build:babelCache', function () {
|
|
//When running from built packages, if a plugin is installed before babelcache
|
|
//exists it can become owned by root. This causes server startup to fail because
|
|
//the optimization process can't write to .babelcache.json.
|
|
grunt.file.write('build/kibana/optimize/.babelcache.json', '{}\n');
|
|
});
|
|
}
|