hytopia 0.10.12 → 0.10.13
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/bin/scripts.js +1 -1
- package/package.json +1 -1
- package/server.mjs +2 -2
package/bin/scripts.js
CHANGED
@@ -441,7 +441,7 @@ async function packageProject() {
|
|
441
441
|
|
442
442
|
logDivider();
|
443
443
|
|
444
|
-
const child = spawn(process.execPath, ['--enable-source-maps', 'index.mjs'], { stdio: 'pipe' });
|
444
|
+
const child = spawn(process.execPath, ['--enable-source-maps', 'index.mjs'], { stdio: 'pipe', shell: false });
|
445
445
|
|
446
446
|
await new Promise(resolve => {
|
447
447
|
child.stdout.on('data', data => {
|
package/package.json
CHANGED