forked from zachleat/BigText
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGruntfile.js
35 lines (26 loc) · 774 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
module.exports = function( grunt ) {
'use strict';
function loadConfig( path ) {
var glob = require( "glob" ),
object = {},
key;
glob.sync( "*", {
cwd: path
}).forEach(function( option ) {
key = option.replace( /\.js$/, "" );
if( !object.hasOwnProperty( key ) ) {
object[ key ] = {};
}
grunt.util._.extend( object[ key ], require( path + option ) );
});
return object;
}
var config = {
pkg: grunt.file.readJSON( "package.json" ),
banner: grunt.file.read( "grunt/banner.txt" )
};
grunt.util._.merge( config, loadConfig( "./grunt/config-lib/" ), loadConfig( "./grunt/config/" ) );
grunt.initConfig( config );
require( "matchdep" ).filterDev( "grunt-*" ).forEach( grunt.loadNpmTasks );
grunt.loadTasks( "grunt" );
};