mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-16 02:36:16 +01:00
Add series flag for ./nodebb build
This commit is contained in:
committed by
Julian Lam
parent
8eea6017fe
commit
7cd8274c0f
@@ -134,13 +134,22 @@ function buildTargets(targets, parallel, callback) {
|
||||
}, callback);
|
||||
}
|
||||
|
||||
function build(targets, callback) {
|
||||
function build(targets, options, callback) {
|
||||
if (!callback && typeof options === 'function') {
|
||||
callback = options;
|
||||
options = {};
|
||||
} else if (!options) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
if (targets === true) {
|
||||
targets = allTargets;
|
||||
} else if (!Array.isArray(targets)) {
|
||||
targets = targets.split(',');
|
||||
}
|
||||
|
||||
var parallel = !nconf.get('series') && !options.series;
|
||||
|
||||
targets = targets
|
||||
// get full target name
|
||||
.map(function (target) {
|
||||
@@ -200,7 +209,6 @@ function build(targets, callback) {
|
||||
require('./minifier').maxThreads = threads - 1;
|
||||
}
|
||||
|
||||
var parallel = !nconf.get('series');
|
||||
if (parallel) {
|
||||
winston.info('[build] Building in parallel mode');
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user