i am using grunt concurrent
grunt.initConfig({
concurrent: {
options: {
logConcurrentOutput: true
},
prod: {
tasks: ["watch:A", "watch:C"]
},
dev: {
tasks: ["watch:B", "watch:C"]
}
}
});
grunt.loadNpmTasks('grunt-concurrent');
grunt.registerTask("prod", ["concurrent:prod"]);
grunt.registerTask("dev", ["concurrent:dev"]);
grunt.tasks(['dev'], {}, function(args) {
});
i have this error, it is not executing properly.
Running "concurrent:dev" (concurrent) task
Usage: sails [command]
Commands:
version
lift [options]
new [options] [path_to_new_app]
generate
console
consle
consloe
c
www
debug
configure
help
Options:
-h, --help output usage information
-v, --version output the version number
--silent
--verbose
--silly
Usage: sails [command]
Commands:
version
lift [options]
new [options] [path_to_new_app]
generate
console
consle
consloe
c
www
debug
configure
help
Options:
-h, --help output usage information
-v, --version output the version number
--silent
--verbose
--silly
Done, Without errors.
i have this output , i need properly execute one by one task using grunt-concurrent. Can you help me? can you give some code ? How to run custom task run via concurrent?