How to use the renameTask function from grunt
Find comprehensive JavaScript grunt.renameTask code examples handpicked from public code repositorys.
271 272 273 274 275 276 277 278 279 280
```javascript var grunt = require('grunt'); module.exports = function() { grunt.renameTask('mochaTest', 'mocha'); return { test: ['mocha'], w: ['build', 'doStuff', 'mocha', 'watch'] };
1
3
1
+ 7 other calls in file
grunt.file is the most popular function in grunt (372 examples)