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 +2 -1
- package/dist/compile_docs.mjs +2 -1
- package/package.json +1 -1
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: ["
|
|
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;
|
package/dist/compile_docs.mjs
CHANGED
|
@@ -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: ["
|
|
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;
|