@absolutejs/absolute 0.19.0-beta.90 → 0.19.0-beta.91

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.
@@ -495,7 +495,8 @@ var generateManifest = (outputs, buildPath) => outputs.reduce((manifest, artifac
495
495
  }, {});
496
496
 
497
497
  // src/build/freshBuildWorker.ts
498
- var config = JSON.parse(process.argv[1]);
498
+ var configArg = process.argv.find((a) => a.startsWith("{"));
499
+ var config = JSON.parse(configArg);
499
500
  var reactDir = config.reactDirectory ? resolve2(config.reactDirectory) : undefined;
500
501
  var buildDir = resolve2(config.buildDirectory || "build");
501
502
  var hmr = config.options?.injectHMR === true;
package/package.json CHANGED
@@ -164,5 +164,5 @@
164
164
  "typecheck": "bun run vue-tsc --noEmit"
165
165
  },
166
166
  "types": "./dist/src/index.d.ts",
167
- "version": "0.19.0-beta.90"
167
+ "version": "0.19.0-beta.91"
168
168
  }