as-test 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/bin/commands/build-core.js +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -59,7 +59,13 @@ function getBuildCommand(config, pkgRunner, file, outFile, modeName, featureTogg
|
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
function getUserBuildArgs(config) {
|
|
62
|
-
|
|
62
|
+
const args = [];
|
|
63
|
+
for (const value of config.buildOptions.args) {
|
|
64
|
+
if (!value.length)
|
|
65
|
+
continue;
|
|
66
|
+
args.push(...tokenizeCommand(value));
|
|
67
|
+
}
|
|
68
|
+
return args;
|
|
63
69
|
}
|
|
64
70
|
function expandBuildCommand(template, file, outFile, target, modeName) {
|
|
65
71
|
const name = path
|