Skip to content

Instantly share code, notes, and snippets.

@srhise
Created January 30, 2014 01:03
Show Gist options
  • Save srhise/8700677 to your computer and use it in GitHub Desktop.
Save srhise/8700677 to your computer and use it in GitHub Desktop.
Grunt module.exports
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.registerTask('default', [ 'concat:css', 'cssmin:css', 'concat:js', 'uglify:js' ]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment