-
Notifications
You must be signed in to change notification settings - Fork 1
grunt
sinsunsan edited this page Nov 4, 2014
·
26 revisions
Looking at open source project settings is very informative to discover grunt plugin and copy some settings Like :
And some tutorials :
- http://gruntjs.com/configuring-tasks
- http://thanpol.as/grunt/Managing-large-scale-projects-with-Grunt
- https://oncletom.io/2013/dynamic-grunt-targets-using-templates
- http://dontkry.com/posts/code/grunt-tricks.html
Configuring grunt with Gruntfile.js
http://chrisawren.com/posts/Advanced-Grunt-tooling
Verbose mode & debugging
For a long time in my early grunting I didn't know you could see more task output by adding the -v flag to a command. Some tasks opt for extended logging in verbose mode, and in that case, setting this flag can expose more information about a task if it's not functioning as expected.
If you need to look further into debugging a task by seeing a stack trace, you can also set the --stack flag.