innetjs 2.1.2 → 2.1.4

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 CHANGED
@@ -197,7 +197,6 @@ 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();
201
200
  const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
202
201
  function normalizeEnv(value) {
203
202
  if (value) {
@@ -626,9 +625,11 @@ class InnetJS {
626
625
  }
627
626
  }
628
627
 
629
- var version = "2.1.2";
628
+ var version = "2.1.4";
630
629
 
631
- require('dotenv').config();
630
+ require('dotenv').config({
631
+ override: true
632
+ });
632
633
  const innetJS = new InnetJS();
633
634
  commander.program
634
635
  .version(version, '-v, --version');
package/index.es6.js CHANGED
@@ -165,7 +165,6 @@ 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();
169
168
  const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
170
169
  function normalizeEnv(value) {
171
170
  if (value) {
package/index.js CHANGED
@@ -195,7 +195,6 @@ 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();
199
198
  const REG_CLEAR_TEXT = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;
200
199
  function normalizeEnv(value) {
201
200
  if (value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "2.1.2",
3
+ "version": "2.1.4",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",