as-test 1.0.14 → 1.0.15

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-05-04 - v1.0.15
4
+
5
+ - fix: path resolving
6
+ -
3
7
  ## 2026-05-04 - v1.0.14
4
8
 
5
9
  ### Fuzzing
@@ -23,7 +23,7 @@ export async function fuzz(configPath = DEFAULT_CONFIG_PATH, selectors = [], mod
23
23
  const results = [];
24
24
  for (const file of inputFiles) {
25
25
  const buildStartedAt = Date.now();
26
- await build(configPath, [file], modeName, { coverage: false }, { target: "bindings", args: ["--use", "AS_TEST_FUZZ=1"], kind: "fuzz" }, activeConfig);
26
+ await build(configPath, [file], modeName, { coverage: false }, { target: "bindings", args: ["--use", "AS_TEST_FUZZ=1"], kind: "fuzz" }, loadedConfig);
27
27
  const buildFinishedAt = Date.now();
28
28
  const buildTime = buildFinishedAt - buildStartedAt;
29
29
  results.push(await runFuzzTarget(file, activeConfig.outDir, duplicateBasenames, config, fuzzerSelectors, buildStartedAt, buildFinishedAt, buildTime, modeName));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "author": "Jairus Tanaka",
5
5
  "repository": {
6
6
  "type": "git",