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.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  ;(function () {
4
- const env = {"__INNETJS__PACKAGE_VERSION":"3.2.0"};
4
+ const env = {"__INNETJS__PACKAGE_VERSION":"3.2.1"};
5
5
  if (typeof process === 'undefined') {
6
6
  globalThis.process = { env: env };
7
7
  } else if (process.env) {
@@ -1,5 +1,5 @@
1
1
  ;(function () {
2
- const env = {"__INNETJS__PACKAGE_VERSION":"3.2.0"};
2
+ const env = {"__INNETJS__PACKAGE_VERSION":"3.2.1"};
3
3
  if (typeof process === 'undefined') {
4
4
  globalThis.process = { env: env };
5
5
  } else if (process.env) {
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', 'pipe'],
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.0"};
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', 'pipe'],
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', 'pipe'],
780
+ stdio: ['inherit', 'inherit'],
781
781
  });
782
782
  apps[name] = child;
783
783
  child.stderr.on('data', (chunk) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",