mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Fixing bower_components entry in .gitignore; fixing spacing in watch.js; fixing requrie_css to write to build/src
This commit is contained in:
parent
1c87100216
commit
3a9263e9fa
3 changed files with 6 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,6 +1,6 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
src/kibana/bower_components
|
||||
bower_components
|
||||
**/*.css
|
||||
trash
|
||||
build
|
||||
|
|
|
@ -34,7 +34,10 @@ module.exports = function (grunt) {
|
|||
tasks: [
|
||||
'stop:kibana_server',
|
||||
'run:kibana_server'
|
||||
]
|
||||
],
|
||||
options: {
|
||||
spawn: false
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module.exports = function (grunt) {
|
|||
].forEach(function (dep) {
|
||||
grunt.file.copy(
|
||||
join(grunt.config.get('bowerComponentsDir'), 'require-css', dep),
|
||||
join(grunt.config.get('app'), dep)
|
||||
join(grunt.config.get('build'), 'src', dep)
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue