innetjs 2.1.4 → 2.1.5

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.
Files changed (2) hide show
  1. package/bin/innet +3 -2
  2. package/package.json +4 -3
package/bin/innet CHANGED
@@ -625,11 +625,12 @@ class InnetJS {
625
625
  }
626
626
  }
627
627
 
628
- var version = "2.1.4";
628
+ var version = "2.1.5";
629
629
 
630
- require('dotenv').config({
630
+ const dotenvConfigOutput = require('dotenv').config({
631
631
  override: true
632
632
  });
633
+ require('dotenv-expand').expand(dotenvConfigOutput);
633
634
  const innetJS = new InnetJS();
634
635
  commander.program
635
636
  .version(version, '-v, --version');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",
@@ -44,23 +44,24 @@
44
44
  "cli-select": "^1.1.2",
45
45
  "commander": "^9.4.1",
46
46
  "dotenv": "^16.0.3",
47
+ "dotenv-expand": "^9.0.0",
47
48
  "express": "^4.18.2",
48
49
  "express-http-proxy": "^1.6.3",
49
50
  "fs-extra": "^10.1.0",
50
51
  "lines-and-columns": "^2.0.3",
51
52
  "postcss": "^8.4.18",
52
- "sass": "^1.55.0",
53
53
  "prompts": "^2.4.2",
54
54
  "rollup": "^2.79.1",
55
55
  "rollup-plugin-filesize": "^9.1.2",
56
56
  "rollup-plugin-inject-process-env": "^1.3.1",
57
57
  "rollup-plugin-innet-jsx": "^1.3.0",
58
58
  "rollup-plugin-livereload": "^2.0.5",
59
+ "rollup-plugin-polyfill-node": "^0.11.0",
59
60
  "rollup-plugin-string": "^3.0.0",
60
61
  "rollup-plugin-styles": "^4.0.0",
61
62
  "rollup-plugin-terser": "^7.0.2",
62
63
  "rollup-plugin-typescript2": "^0.33.0",
63
- "rollup-plugin-polyfill-node": "^0.11.0",
64
+ "sass": "^1.55.0",
64
65
  "tmp": "^0.2.1",
65
66
  "typescript": "^4.8.4",
66
67
  "unzipper": "^0.10.11"