Grunt is a JavaScript task runner which helps to lessen work you have to do when performing repetitive tasks like minification, compilation, unit testing, linting, etc.

learn more… | top users | synonyms (1)

3
votes
1answer
338 views

Validate that a relative path exists or is an external URI

I sent a PR to a repo the other day and want to make sure I have the right idea for URI validation. ...
3
votes
0answers
46 views

Scraping paths from a Gruntfile

As a part of my Tabv Vim plugin (which at this stage is nothing more than a pitiful rag-tag assortment of half-baked hacks), I have a function which attempts to guess the directory paths for main ...
2
votes
1answer
230 views

nodejs grunt plugin using async module

I'm looking for some code review of my usage of async. Mainly why this does not work without the done = this.async() method and why I don't have to invoke 'done()' ...
1
vote
0answers
267 views

Passing a value from my Gruntfile to an external Grunt task

In my Gruntfile, I use the grunt-contrib-watch task to watch a directory for file changes: ...
0
votes
1answer
255 views

Setting Sass environment variables in Grunt

I am into building functional prototypes, but also for outputting CSS and JS, which means we have 2 times we build out our code, once as a demo with HTML files (we are using assemble.io) and another, ...