2013-07-20 16:56:59 -05:00
|
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
2015-04-20 01:10:23 -05:00
|
|
|
var os = require('os');
|
2013-09-13 15:52:13 -05:00
|
|
|
var config = {
|
2013-07-20 16:56:59 -05:00
|
|
|
pkg: grunt.file.readJSON('package.json'),
|
2013-11-14 22:29:41 -06:00
|
|
|
baseDir: '.',
|
2015-03-29 05:57:28 -05:00
|
|
|
srcDir: 'public',
|
2015-09-10 04:26:40 -05:00
|
|
|
genDir: 'public_gen',
|
2013-09-13 15:52:13 -05:00
|
|
|
destDir: 'dist',
|
|
|
|
tempDir: 'tmp',
|
2015-04-20 01:10:23 -05:00
|
|
|
platform: process.platform.replace('win32', 'windows'),
|
2018-10-25 09:55:27 -05:00
|
|
|
enterprise: false,
|
2013-09-13 15:52:13 -05:00
|
|
|
};
|
|
|
|
|
2018-05-08 02:42:20 -05:00
|
|
|
if (grunt.option('platform')) {
|
|
|
|
config.platform = grunt.option('platform');
|
|
|
|
}
|
|
|
|
|
2018-10-25 09:55:27 -05:00
|
|
|
if (grunt.option('enterprise')) {
|
|
|
|
config.enterprise = true;
|
|
|
|
}
|
|
|
|
|
2016-10-17 08:09:35 -05:00
|
|
|
if (grunt.option('arch')) {
|
2016-10-17 08:19:00 -05:00
|
|
|
config.arch = grunt.option('arch');
|
2016-10-17 08:09:35 -05:00
|
|
|
} else {
|
2016-10-17 08:19:00 -05:00
|
|
|
config.arch = os.arch();
|
2016-10-17 08:09:35 -05:00
|
|
|
|
|
|
|
if (process.platform.match(/^win/)) {
|
|
|
|
config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86';
|
|
|
|
}
|
2015-04-21 01:56:32 -05:00
|
|
|
}
|
|
|
|
|
2016-09-18 04:13:00 -05:00
|
|
|
config.phjs = grunt.option('phjsToRelease');
|
2015-03-04 00:09:59 -06:00
|
|
|
config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
|
2017-10-22 00:03:26 -05:00
|
|
|
|
2016-03-30 14:02:44 -05:00
|
|
|
console.log('Version', config.pkg.version);
|
2015-03-04 00:09:59 -06:00
|
|
|
|
2013-11-14 17:07:14 -06:00
|
|
|
// load plugins
|
|
|
|
require('load-grunt-tasks')(grunt);
|
2013-09-19 12:17:42 -05:00
|
|
|
|
2013-11-14 17:07:14 -06:00
|
|
|
// load task definitions
|
2017-10-01 13:02:25 -05:00
|
|
|
grunt.loadTasks('./scripts/grunt');
|
2013-10-17 17:33:43 -05:00
|
|
|
|
2013-11-14 21:30:28 -06:00
|
|
|
// Utility function to load plugin settings into config
|
|
|
|
function loadConfig(config,path) {
|
2013-11-14 17:07:14 -06:00
|
|
|
require('glob').sync('*', {cwd: path}).forEach(function(option) {
|
2013-11-14 21:30:28 -06: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 10:44:06 -06:00
|
|
|
grunt.util._.extend(config[key], require(path + option)(config,grunt));
|
2013-09-19 12:17:42 -05:00
|
|
|
});
|
2013-11-14 21:30:28 -06:00
|
|
|
// technically not required
|
|
|
|
return config;
|
2013-11-14 17:07:14 -06:00
|
|
|
}
|
2013-09-19 15:45:09 -05:00
|
|
|
|
2013-11-14 17:07:14 -06:00
|
|
|
// Merge that object with what with whatever we have here
|
2017-10-01 13:02:25 -05:00
|
|
|
loadConfig(config,'./scripts/grunt/options/');
|
2013-09-19 12:17:42 -05:00
|
|
|
// pass the config to grunt
|
|
|
|
grunt.initConfig(config);
|
2014-08-11 09:37:31 -05:00
|
|
|
};
|