Skip to content

Instantly share code, notes, and snippets.

@matiascarranza
Forked from kazu69/after-Gruntfile.js
Last active August 29, 2015 14:07
Show Gist options
  • Save matiascarranza/71931e6e7f548ec3802e to your computer and use it in GitHub Desktop.
Save matiascarranza/71931e6e7f548ec3802e to your computer and use it in GitHub Desktop.
module.exports = function (grunt) {
// load all grunt tasks matching the `grunt-*` pattern
require('load-grunt-tasks')(grunt);
grunt.initConfig({});
grunt.registerTask('default', []);
}
module.exports = function (grunt) {
grunt.initConfig({});
// load tasks
grunt.loadNpmTasks('grunt-htmlmin');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-svgmin');
.
.
.
grunt.registerTask('default', []);
}
npm install --save-dev load-grunt-tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment