kibana/tasks/config/clean.js
Spencer acd74a2b6b
[6.x] Condense build task (#16687) (#16689)
* [build] don't copy unwanted files

* [build] condense mkdir/touch tasks

* [i18n] verifyTranslations task has nothing to do with the build, just run in tests
2018-02-12 17:46:12 -07:00

9 lines
279 B
JavaScript

module.exports = function () {
return {
build: 'build',
target: 'target',
testsFromModules: 'build/kibana/node_modules/**/{test,tests}/**',
examplesFromModules: 'build/kibana/node_modules/**/{example,examples}/**',
packages: 'build/kibana/packages'
};
};