grunt, grunt-shell and command argument
Date : March 29 2020, 07:55 AM
it should still fix some issue Your problem is the alias, aliases don't work like you think. If you use grunt shell:hello:me
grunt.registerTask('d', function (greeting) {
grunt.task.run('shell:hello:' + greeting);
});
grunt d:me
|
Using GRUNT from NodeJS error message "'grunt' is not recognized as an internal or external command, operable progr
Date : March 29 2020, 07:55 AM
Hope this helps This seems to be a duplicate of this question: Grunt on Windows 8: 'grunt' is not recognizedIn his case, it was a PATH issue. Check that your PATH is correct. It must contains the path where npm is installed: C:\Users\Ben\AppData\Roaming\npm
|
Grunt plugin grunt-exec v2.0.0 doesn't execute a simple command while v1.0.1 does
Date : March 29 2020, 07:55 AM
should help you out Looks like the grunt-exec version v2.0.0 uses some ECMAScript features that are not supported in older versions of node. The first one i saw was:
|
Grunt file: how can I add command line options at runtime? (Grunt 0.3.15+)
Date : March 29 2020, 07:55 AM
|
npm Grunt loads, but then grunt command unrecognized
Date : March 29 2020, 07:55 AM
|