-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
40 lines (33 loc) · 984 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Load the tasks and options dinamically
*
* They are defined in the tasks directory. This is based in the code
* generated by the 10up WP-Make.
*
* https://github.com/10up/generator-wp-make
*/
module.exports = function (grunt) {
// require `load-grunt-tasks`, which loads all grunt tasks defined in package.json
require('load-grunt-tasks')(grunt);
// load tasks defined in the `/tasks` folder
grunt.loadTasks('tasks');
// Function to load the options for each grunt module
var loadConfig = function (path) {
var glob = require('glob');
var object = {};
var key;
glob.sync('*', {cwd: path}).forEach(function(option) {
key = option.replace(/\.js$/,'');
object[key] = require(path + option);
});
return object;
};
var config = {
pkg: grunt.file.readJSON( 'package.json' ),
config: {
server: 'public/wp-content/themes/<%= pkg.name %>',
}
};
grunt.util._.extend(config, loadConfig('./tasks/options/'));
grunt.initConfig(config);
};