forked from skyglobal/web-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watch.js
22 lines (22 loc) · 794 Bytes
/
watch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
gruntfile: {
files: 'Gruntfile.js',
tasks: ['build']
},
'js': {
files: [ 'app/src/js/**/*.js' ],
tasks: ['jshint','requirejs:toolkit','jekyll:build', 'prepare-site']
},
'scss': {
files: [ 'app/src/sass/**/*.scss'],
tasks: ['compass', 'jekyll:build', 'prepare-site']
},
'jekyll': {
files: [ 'app/_includes/**/*', 'app/_layouts/**/*', 'app/_data/**/*', 'app/*.html', 'app/_config.yml', 'test/libraries/*.js','test/*' ],
tasks: ['jekyll:build', 'prepare-site']
},
'specs': {
files: ['test/specs/*.js','test/config.js'],
tasks: ['jekyll:build', 'prepare-site'] //'jshint',
}
};