Fixing bower_components entry in .gitignore; fixing spacing in watch.js; fixing requrie_css to write to build/src

This commit is contained in:
Chris Cowan 2014-08-26 14:09:41 -07:00
parent 1c87100216
commit 3a9263e9fa
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
.DS_Store
node_modules
src/kibana/bower_components
bower_components
**/*.css
trash
build

View file

@ -34,7 +34,10 @@ module.exports = function (grunt) {
tasks: [
'stop:kibana_server',
'run:kibana_server'
]
],
options: {
spawn: false
}
}
};

View file

@ -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)
);
});
});