UNPKG

grunt-load-options

Version:

A simple plugin to modularize your Gruntfile by putting configuration options and tasks in a `grunt` subfolder.

9 lines (6 loc) 250 B
/* Grunt task aliases */ // Almost every task needs access to the grunt object, so wrap it in a // function with `grunt` as a parameter. No need to return anything. module.exports = function(grunt) { grunt.registerTask('default', ['jshint']); };