innetjs 2.1.2 → 2.1.3
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/innet +4 -2
- package/index.es6.js +3 -1
- package/index.js +3 -1
- package/package.json +1 -1
package/bin/innet
CHANGED
|
@@ -197,7 +197,9 @@ const { exec, spawn } = require('child_process');
|
|
|
197
197
|
const readline = require('readline');
|
|
198
198
|
const execAsync = util.promisify(exec);
|
|
199
199
|
const copyFiles = util.promisify(fs__default["default"].copy);
|
|
200
|
-
require('dotenv').config(
|
|
200
|
+
require('dotenv').config({
|
|
201
|
+
override: true
|
|
202
|
+
});
|
|
201
203
|
const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
|
|
202
204
|
function normalizeEnv(value) {
|
|
203
205
|
if (value) {
|
|
@@ -626,7 +628,7 @@ class InnetJS {
|
|
|
626
628
|
}
|
|
627
629
|
}
|
|
628
630
|
|
|
629
|
-
var version = "2.1.
|
|
631
|
+
var version = "2.1.3";
|
|
630
632
|
|
|
631
633
|
require('dotenv').config();
|
|
632
634
|
const innetJS = new InnetJS();
|
package/index.es6.js
CHANGED
|
@@ -165,7 +165,9 @@ const { exec, spawn } = require('child_process');
|
|
|
165
165
|
const readline = require('readline');
|
|
166
166
|
const execAsync = promisify(exec);
|
|
167
167
|
const copyFiles = promisify(fs.copy);
|
|
168
|
-
require('dotenv').config(
|
|
168
|
+
require('dotenv').config({
|
|
169
|
+
override: true
|
|
170
|
+
});
|
|
169
171
|
const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
|
|
170
172
|
function normalizeEnv(value) {
|
|
171
173
|
if (value) {
|
package/index.js
CHANGED
|
@@ -195,7 +195,9 @@ const { exec, spawn } = require('child_process');
|
|
|
195
195
|
const readline = require('readline');
|
|
196
196
|
const execAsync = util.promisify(exec);
|
|
197
197
|
const copyFiles = util.promisify(fs__default["default"].copy);
|
|
198
|
-
require('dotenv').config(
|
|
198
|
+
require('dotenv').config({
|
|
199
|
+
override: true
|
|
200
|
+
});
|
|
199
201
|
const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
|
|
200
202
|
function normalizeEnv(value) {
|
|
201
203
|
if (value) {
|