You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* WATCH
|
|
* =====
|
|
* Process for watching changes to files in real time.
|
|
*/
|
|
module.exports = {
|
|
js: {
|
|
files: [
|
|
'js/**/*.js'
|
|
],
|
|
tasks: [
|
|
'eslint'
|
|
],
|
|
options: {
|
|
livereload: true
|
|
},
|
|
},
|
|
};
|
|
|