mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
let { defaults } = require('lodash');
|
|
let babelOptions = require('../../src/optimize/babel_options');
|
|
|
|
module.exports = {
|
|
build: {
|
|
options: babelOptions.node,
|
|
src: [
|
|
'build/kibana/**/*.js',
|
|
'!**/public/**',
|
|
'!**/node_modules/**',
|
|
'!**/bower_components/**',
|
|
'!**/__tests__/**'
|
|
],
|
|
dest: '.',
|
|
expand: true
|
|
}
|
|
};
|