grunt
grunt copied to clipboard
Grunt: The JavaScript Task Runner
When I run a grunt task and it takes long (maybe longer than 30 seconds), it just fails, can we add a flag to increase the timeout time?
It's not an issue, It's a feature. But i am not sure i can achieve this using grunt or not. I am deploying my UI application which is made up...
After this error message: > Fatal error: EBADF: bad file descriptor, close the current task stops instantly even of there are other things ot do for that task, without other...
`grunt.task.run` runs a task after another has finished. However I need to run a task from within a task and process things after the other task has finished. An API...
When copying a file with grunt.file.copy, permissions are not preserved. In addition, no option is provided to explicitly set permissions of the copied file. A configuration option for one or...
Grunt config merge does not work exactly in v1.0.2 and v1.0.3. Second and third getters are differently. Example: ```javascript module.exports = function (grunt) { "use strict"; var i = 0,...
The possibility to easily retrieve the list of task names in the queue. Something like this: ``` js grunt.registerTask('default', ['jscs:all', 'jshint']); // When running `grunt` grunt.task.queue; // ['jscs:all', 'jshint'] //...
Hello, I'd like to invite you to submit expenses like domain or hosting costs through Bower's OpenCollective https://opencollective.com/bower We'll be happy to support you If you can think of any...
Sometimes it's dangerous or undesired to run all of a multitask's subtasks by default. Proposal: an option to set the default behavior when a subtask is not specified instead of...
I think that the synchronous code in this line causes a big slow down compared to the reading speed that could be obtained by using the asynchronous method of *glob()*...