grunt icon indicating copy to clipboard operation
grunt copied to clipboard

Grunt: The JavaScript Task Runner

Results 124 grunt issues
Sort by recently updated
recently updated
newest added

Im trying to solve webpack/grunt-webpack#61 which throws an error if the config in the Gruntfile.js contains a circular reference (see stacktrace at the end). The first assumption was that we...

I'd like an option (such as) `verboseTask: true` that would enable verbose logging for any specific task. This would allow developers to look into an individual task w/o being overwhelmed...

Can you clarify/document on logo license ? Is it MIT as rest of the code ?

gruntjs "org"

Some task authors have expressed a desire for `this.options()` to (recursively) deep merge task options. Right now, options are shallow merged (one level deep). (Currently, target-level config options override task-level...

needs discussion

I have this following line in my grunt file: grunt.registerTask('test', ['jest', 'cleanup']); Suppose my 'jest' task fails, the cleanup task doesn't start, is there a way to force the cleanup...

Simple question: is it possible to keep template strings from getting processed? I shouldn't have to do this: ``` javascript replacements: [{ from: 'something', to: '' },{ from: 'ConfigurationManager.AppSettings("something")', to:...

question

**Issue:** When `force` is enabled, multitasks are unconditionally marked as success, even if a child task fails with a warning. **Expected behavior:** A multitask is only marked as success if...

When getting a config "path" (passing e.g. `"foo.bar.baz"` or `['foo', 'bar', 'baz']` to `grunt.config.get`) grunt doesn't process templates as it's stepping through the object graph. ``` js grunt.initConfig({ getFooBarBaz: '',...

Part of my Grunt config: ``` js grunt.initConfig({ defs: { options: { defsConfigURL: 'defs-config.json', }, all: { files: [ { expand: true, extDot: 'last', ext: '.defs.js', src: [ /* app...

Hi I'm testing using grunt 1.0.1 but in grunt-contrib-jshint and grunt-jscs and grunt-jsonlint they showed colour in 0.4.5 but in 1.0.1 they doint show colour any more. See https://integration.wikimedia.org/ci/job/mediawiki-core-npm-node-4.3/598/console please...