elegance-js 1.9.7 → 1.9.8

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/dist/build.mjs CHANGED
@@ -359,7 +359,7 @@ var runBuild = (filepath, DIST_DIR) => {
359
359
  child.kill("SIGKILL");
360
360
  }
361
361
  child = child_process.spawn("node", [filepath], {
362
- stdio: ["inherit", "inherit", "inherit", "ipc"],
362
+ stdio: ["pipe", "pipe", "pipe", "ipc"],
363
363
  env: { ...process.env, DIST_DIR, OPTIONS: optionsString, PACKAGE_PATH: packageDir }
364
364
  });
365
365
  child.on("error", () => {
@@ -367,6 +367,7 @@ var runBuild = (filepath, DIST_DIR) => {
367
367
  });
368
368
  child.on("exit", () => {
369
369
  isBuilding = false;
370
+ log.info("Builder process complete");
370
371
  });
371
372
  child.on("message", (message) => {
372
373
  const { data } = message;
@@ -362,7 +362,7 @@ var runBuild = (filepath, DIST_DIR) => {
362
362
  child.kill("SIGKILL");
363
363
  }
364
364
  child = child_process.spawn("node", [filepath], {
365
- stdio: ["inherit", "inherit", "inherit", "ipc"],
365
+ stdio: ["pipe", "pipe", "pipe", "ipc"],
366
366
  env: { ...process.env, DIST_DIR, OPTIONS: optionsString, PACKAGE_PATH: packageDir }
367
367
  });
368
368
  child.on("error", () => {
@@ -370,6 +370,7 @@ var runBuild = (filepath, DIST_DIR) => {
370
370
  });
371
371
  child.on("exit", () => {
372
372
  isBuilding = false;
373
+ log.info("Builder process complete");
373
374
  });
374
375
  child.on("message", (message) => {
375
376
  const { data } = message;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elegance-js",
3
- "version": "1.9.7",
3
+ "version": "1.9.8",
4
4
  "description": "Web-Framework",
5
5
  "type": "module",
6
6
  "bin": {