Files
grafana/Gruntfile.js

65 lines
1.7 KiB
JavaScript
Raw Normal View History

'use strict';
module.exports = function (grunt) {
var os = require('os');
2013-09-13 13:52:13 -07:00
var config = {
pkg: grunt.file.readJSON('package.json'),
2013-11-14 21:29:41 -07:00
baseDir: '.',
2015-03-29 12:57:28 +02:00
srcDir: 'public',
2015-09-10 11:26:40 +02:00
genDir: 'public_gen',
2013-09-13 13:52:13 -07:00
destDir: 'dist',
tempDir: 'tmp',
platform: process.platform.replace('win32', 'windows'),
enterprise: false,
libc: null,
2013-09-13 13:52:13 -07:00
};
if (grunt.option('platform')) {
config.platform = grunt.option('platform');
}
if (grunt.option('enterprise')) {
config.enterprise = true;
}
if (grunt.option('arch')) {
2016-10-17 15:19:00 +02:00
config.arch = grunt.option('arch');
} else {
2016-10-17 15:19:00 +02:00
config.arch = os.arch();
if (process.platform.match(/^win/)) {
config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86';
}
}
if (grunt.option('libc')) {
config.libc = grunt.option('libc');
}
2015-03-04 07:09:59 +01:00
config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
2016-03-30 12:02:44 -07:00
console.log('Version', config.pkg.version);
2015-03-04 07:09:59 +01:00
2013-11-14 16:07:14 -07:00
// load plugins
require('load-grunt-tasks')(grunt);
2013-11-14 16:07:14 -07:00
// load task definitions
grunt.loadTasks('./scripts/grunt');
2013-10-17 15:33:43 -07:00
2013-11-14 20:30:28 -07:00
// Utility function to load plugin settings into config
function loadConfig(config, path) {
2013-11-14 16:07:14 -07:00
require('glob').sync('*', {cwd: path}).forEach(function(option) {
2013-11-14 20:30:28 -07:00
var key = option.replace(/\.js$/,'');
// If key already exists, extend it. It is your responsibility to avoid naming collisions
config[key] = config[key] || {};
2013-11-15 09:44:06 -07:00
grunt.util._.extend(config[key], require(path + option)(config,grunt));
});
2013-11-14 20:30:28 -07:00
// technically not required
return config;
2013-11-14 16:07:14 -07:00
}
2013-11-14 16:07:14 -07:00
// Merge that object with what with whatever we have here
loadConfig(config,'./scripts/grunt/options/');
// pass the config to grunt
grunt.initConfig(config);
2014-08-11 16:37:31 +02:00
};