innetjs 3.2.0 → 3.2.1
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/_virtual/_rollup-plugin-process-env.js +1 -1
- package/_virtual/_rollup-plugin-process-env.mjs +1 -1
- package/bin/innet +2 -2
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/bin/innet
CHANGED
|
@@ -886,7 +886,7 @@ class InnetJS {
|
|
|
886
886
|
return;
|
|
887
887
|
}
|
|
888
888
|
const child = spawn('node', ['-r', 'source-map-support/register', filePath], {
|
|
889
|
-
stdio: ['inherit', '
|
|
889
|
+
stdio: ['inherit', 'inherit'],
|
|
890
890
|
});
|
|
891
891
|
apps[name] = child;
|
|
892
892
|
child.stderr.on('data', (chunk) => {
|
|
@@ -905,7 +905,7 @@ class InnetJS {
|
|
|
905
905
|
}
|
|
906
906
|
|
|
907
907
|
(function () {
|
|
908
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"3.2.
|
|
908
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"3.2.1"};
|
|
909
909
|
if (typeof process === 'undefined') {
|
|
910
910
|
globalThis.process = { env: env };
|
|
911
911
|
} else if (process.env) {
|
package/index.js
CHANGED
|
@@ -814,7 +814,7 @@ class InnetJS {
|
|
|
814
814
|
return;
|
|
815
815
|
}
|
|
816
816
|
const child = spawn('node', ['-r', 'source-map-support/register', filePath], {
|
|
817
|
-
stdio: ['inherit', '
|
|
817
|
+
stdio: ['inherit', 'inherit'],
|
|
818
818
|
});
|
|
819
819
|
apps[name] = child;
|
|
820
820
|
child.stderr.on('data', (chunk) => {
|
package/index.mjs
CHANGED
|
@@ -777,7 +777,7 @@ class InnetJS {
|
|
|
777
777
|
return;
|
|
778
778
|
}
|
|
779
779
|
const child = spawn('node', ['-r', 'source-map-support/register', filePath], {
|
|
780
|
-
stdio: ['inherit', '
|
|
780
|
+
stdio: ['inherit', 'inherit'],
|
|
781
781
|
});
|
|
782
782
|
apps[name] = child;
|
|
783
783
|
child.stderr.on('data', (chunk) => {
|