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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 2026-03-11 - v1.0.1
4
+
5
+ - patch: automatically tokenize buildOptions.args so that `["--enable simd"]` becomes `["--enable", "simd"]`
6
+
3
7
  ## 2026-03-11 - v1.0.0
4
8
 
5
9
  ### Docs
@@ -59,7 +59,13 @@ function getBuildCommand(config, pkgRunner, file, outFile, modeName, featureTogg
59
59
  };
60
60
  }
61
61
  function getUserBuildArgs(config) {
62
- return config.buildOptions.args.filter((value) => value.length > 0);
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "author": "Jairus Tanaka",
5
5
  "repository": {
6
6
  "type": "git",