20 Jul 2012 | Comments [ JavaScript ] [ CoffeeScript ] [ grunt ] [ build ] Basically, with grunt, you need to code your own tasks. But you can also use tasks on npm. Here’s howto. growl Easy growling using grunt-growl. module.exports = function(grunt){ grunt.loadNpmTasks('grunt-growl'); grunt.initConfig({ growl: { test1: { message: 'OMG!!!', title: 'WOOOOT!!' } } }); grunt.registerTask('default',
