UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

15 lines (11 loc) 420 B
module.exports = function (grunt) { var srcFile = 'build/kibana/src/optimize/babel_options.js'; var buildFile = 'build/kibana/src/optimize/babel_options.build.js'; var rename = require('fs').renameSync; var unlink = require('fs').unlinkSync; grunt.registerTask('_build:babelOptions', function () { unlink(srcFile); rename(buildFile, srcFile); grunt.file.mkdir('build/kibana/optimize'); }); };