generator-scratch
Version:
Scratch is a starter theme generator based on _s and Foundation. It's a theme meant for hacking so don't use it as a Parent Theme. Instead try turning it into the next, most awesome, WordPress theme out there.
35 lines (31 loc) • 831 B
JavaScript
/*global module:false*/
module.exports = function (grunt) {
'use strict';
/**
* load-grunt-config
*
* Grunt plugin that lets you break up your Gruntfile config by task
*
* @link https://www.npmjs.com/package/load-grunt-config
*/
grunt.configs = require( 'load-grunt-config' )( grunt );
/**
* load-grunt-tasks
*
* Load multiple grunt tasks using globbing patterns
*
* This module will read the dependencies/devDependencies/peerDependencies
* in your package.json and load grunt tasks that match the provided patterns.
*
* @link https://www.npmjs.com/package/load-grunt-tasks
*/
require( 'load-grunt-tasks' )( grunt );
/**
* time-grunt
*
* Display the elapsed execution time of grunt tasks
*
* @link https://www.npmjs.com/package/time-grunt
*/
require( 'time-grunt' )( grunt );
};