/** * 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' ], } };