|
|
@ -143,6 +143,11 @@ function build(targets, callback) {
|
|
|
|
target = target.toLowerCase().replace(/-/g, '');
|
|
|
|
target = target.toLowerCase().replace(/-/g, '');
|
|
|
|
if (!aliases[target]) {
|
|
|
|
if (!aliases[target]) {
|
|
|
|
winston.warn('[build] Unknown target: ' + target);
|
|
|
|
winston.warn('[build] Unknown target: ' + target);
|
|
|
|
|
|
|
|
if (target.indexOf(',') !== -1) {
|
|
|
|
|
|
|
|
winston.warn('[build] Are you specifying multiple targets? Separate them with spaces:');
|
|
|
|
|
|
|
|
winston.warn('[build] e.g. `./nodebb build adminjs tpl`');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|