1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/build/grunt/watch.js
2016-04-04 20:08:01 -04:00

27 lines
459 B
JavaScript

module.exports = {
javascript_vendors: {
files: [
'assets/scripts/vendors/*.js'
],
tasks: ['concat:vendors', 'notify:javascript']
},
sass: {
files: ['assets/styles/**/*.scss'],
tasks: ['sass', 'postcss', 'notify:sass'],
options: {
spawn: false,
livereload: true
}
},
svg: {
files: ['assets/images/**/*.svg'],
tasks: ['svgstore', 'notify:svg']
},
tasks: {
files: ['build/grunt/*.js'],
options: {
reload: true
}
}
};