kibana/tasks/config/copy.js
Spencer 0fde087ca2 Switch to Yarn (#15485)
* switch to yarn

* cleanup misc references to npm

* [yarn] loosen dependency ranges so yarn will merge more deps

* fix linting error now that moment uses ESM

* [licenses] font-awesome changed the format of its license id

* Use local yarn

* Misc fixes

* eslintignore built yarn file

* Remove mkdir which doesn't do what it should do

* Check build without upgrading lots of versions

* Fix license check

* too many moments

* Better description

* Review fixes

* Lock to angular@1.6.5

* More specific version locks

* Revert "More specific version locks"

This reverts commit 11ef81102e.

* Revert "Lock to angular@1.6.5"

This reverts commit 3ade68c14c.

* rm yarn.lock; yarn

* Forcing a specific version of React, Angular, Moment

* Using vendored version of yarn in ci

* Use --frozen-lockfile

* fixes
2018-01-10 13:23:43 +01:00

32 lines
821 B
JavaScript

module.exports = function () {
return {
devSource: {
options: { mode: true },
src: [
'yarn.lock',
'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/**',
'!src/dev/**',
'bin/**',
'ui_framework/components/**',
'ui_framework/services/**',
'ui_framework/dist/**',
'ui_framework/src/**',
'webpackShims/**',
'config/kibana.yml',
],
dest: 'build/kibana',
expand: true
},
};
};