31 lines
696 B
Plaintext
31 lines
696 B
Plaintext
function loadConfig(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;
|
|
}
|
|
|
|
module.exports = function(grunt) {
|
|
grunt.loadTasks('grunt-tasks');
|
|
|
|
require('time-grunt')(grunt);
|
|
|
|
// Only load tasks when they are needed
|
|
require('jit-grunt')(grunt, {
|
|
ngtemplates: 'grunt-angular-templates'
|
|
});
|
|
|
|
var config = {
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
env: process.env
|
|
};
|
|
|
|
grunt.util._.extend(config, loadConfig('./grunt-tasks/options/'));
|
|
grunt.initConfig(config);
|
|
}; |