kibana/tasks/config/copy.js
Tyler Smalley e6669ee19d Remove libsass as a dependency (#9803)
Remove libsass as a dependency

libsass is platform specific, therefore we can not ship it as a dependency. Instead, we will commit the compiled CSS for the UI Framework to the repository. This is updated when running `npm run uiFramework:start` which also starts the docs site.

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
2017-01-09 20:27:54 -08:00

25 lines
604 B
JavaScript

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