kibana/tasks/config/copy.js
Court Ewing e635d25b26 fork flot into Kibana (#14366)
The flot-charts project has been abandoned since 2014, but we use it
pretty extensively in Kibana. By forking it, we can fix bugs and improve
on the library in ways that we need to for Kibana.
2017-10-10 13:27:47 -04:00

31 lines
812 B
JavaScript

module.exports = function () {
return {
devSource: {
options: { mode: true },
src: [
'src/**',
'!src/**/__tests__/**',
'!src/test_utils/**',
'!src/fixtures/**',
'!src/core_plugins/dev_mode/**',
'!src/core_plugins/tests_bundle/**',
'!src/core_plugins/console/public/tests/**',
'!src/cli/cluster/**',
'!src/ui_framework/doc_site/**',
'!src/es_archiver/**',
'!src/functional_test_runner/**',
'bin/**',
'packages/flot-charts/**',
'ui_framework/components/**',
'ui_framework/services/**',
'ui_framework/dist/**',
'ui_framework/src/**',
'webpackShims/**',
'config/kibana.yml',
],
dest: 'build/kibana',
expand: true
},
};
};