mirror of https://github.com/sipwise/kibana.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
/* jshint node:true */
|
|
'use strict';
|
|
module.exports = function (grunt) {
|
|
|
|
var config = {
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
baseDir: '.',
|
|
srcDir: 'src',
|
|
destDir: 'dist',
|
|
tempDir: 'tmp',
|
|
docsDir: 'docs/',
|
|
unitTests: 'test/unit/specs/**/*.js',
|
|
unitTestDir: 'test/unit/'
|
|
};
|
|
|
|
// load plugins
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
// load task definitions
|
|
grunt.loadTasks('tasks');
|
|
|
|
// Utility function to load plugin settings into config
|
|
function loadConfig(config,path) {
|
|
require('glob').sync('*', {cwd: path}).forEach(function(option) {
|
|
var key = option.replace(/\.js$/,'');
|
|
// If key already exists, extend it. It is your responsibility to avoid naming collisions
|
|
config[key] = config[key] || {};
|
|
grunt.util._.extend(config[key], require(path + option)(config,grunt));
|
|
});
|
|
// technically not required
|
|
return config;
|
|
}
|
|
|
|
// Merge that object with what with whatever we have here
|
|
loadConfig(config,'./tasks/options/');
|
|
|
|
// pass the config to grunt
|
|
grunt.initConfig(config);
|
|
|
|
}; |