13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
// measures the time each task takes
|
|
require('time-grunt')(grunt);
|
|
|
|
var path = require('path');
|
|
|
|
// load grunt config
|
|
require('load-grunt-config')(grunt, {
|
|
configPath: path.join(process.cwd(), 'grunt')
|
|
});
|
|
|
|
}; |