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.
18 lines
382 B
18 lines
382 B
/**
|
|
* CONCURRENT
|
|
* ==========
|
|
* Runs several multiple blocking tasks at once (like "watch").
|
|
* http://stackoverflow.com/questions/17585385/how-to-run-two-grunt-watch-tasks-simultaneously
|
|
*/
|
|
|
|
module.exports = {
|
|
options: {
|
|
logConcurrentOutput: true,
|
|
},
|
|
watch: {
|
|
tasks: [
|
|
//'nodemon',
|
|
'watch'
|
|
],
|
|
}
|
|
};
|
|
|