innetjs 2.2.18 → 2.2.20
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 +2 -2
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +2 -2
package/bin/innet
CHANGED
|
@@ -649,7 +649,7 @@ class InnetJS {
|
|
|
649
649
|
}
|
|
650
650
|
}
|
|
651
651
|
withEnv(options) {
|
|
652
|
-
options.plugins
|
|
652
|
+
options.plugins = [env__default["default"](this.envPrefix, { include: options.input }), ...options.plugins];
|
|
653
653
|
}
|
|
654
654
|
increaseVersion(release) {
|
|
655
655
|
return tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -760,7 +760,7 @@ class InnetJS {
|
|
|
760
760
|
}
|
|
761
761
|
|
|
762
762
|
(function () {
|
|
763
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
763
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.20"};
|
|
764
764
|
if (typeof process === 'undefined') {
|
|
765
765
|
globalThis.process = { env: env };
|
|
766
766
|
} else if (process.env) {
|
package/index.js
CHANGED
|
@@ -73,7 +73,7 @@ var typescript__default = /*#__PURE__*/_interopDefaultLegacy(typescript);
|
|
|
73
73
|
var tmp__default = /*#__PURE__*/_interopDefaultLegacy(tmp);
|
|
74
74
|
|
|
75
75
|
(function () {
|
|
76
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
76
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.20"};
|
|
77
77
|
if (typeof process === 'undefined') {
|
|
78
78
|
globalThis.process = { env: env };
|
|
79
79
|
} else if (process.env) {
|
|
@@ -548,7 +548,7 @@ class InnetJS {
|
|
|
548
548
|
}
|
|
549
549
|
}
|
|
550
550
|
withEnv(options) {
|
|
551
|
-
options.plugins
|
|
551
|
+
options.plugins = [env__default["default"](this.envPrefix, { include: options.input }), ...options.plugins];
|
|
552
552
|
}
|
|
553
553
|
increaseVersion(release) {
|
|
554
554
|
return tslib.__awaiter(this, void 0, void 0, function* () {
|
package/index.mjs
CHANGED
|
@@ -38,7 +38,7 @@ import { reporter, convertIndexFile, getFile } from './helpers.mjs';
|
|
|
38
38
|
import { updateDotenv } from './updateDotenv.mjs';
|
|
39
39
|
|
|
40
40
|
(function () {
|
|
41
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
41
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.20"};
|
|
42
42
|
if (typeof process === 'undefined') {
|
|
43
43
|
globalThis.process = { env: env };
|
|
44
44
|
} else if (process.env) {
|
|
@@ -513,7 +513,7 @@ class InnetJS {
|
|
|
513
513
|
}
|
|
514
514
|
}
|
|
515
515
|
withEnv(options) {
|
|
516
|
-
options.plugins
|
|
516
|
+
options.plugins = [env(this.envPrefix, { include: options.input }), ...options.plugins];
|
|
517
517
|
}
|
|
518
518
|
increaseVersion(release) {
|
|
519
519
|
return __awaiter(this, void 0, void 0, function* () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "innetjs",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.20",
|
|
4
4
|
"description": "CLI for innet boilerplate",
|
|
5
5
|
"homepage": "https://github.com/d8corp/innetjs",
|
|
6
6
|
"author": "Mikhail Lysikov <d8corp@mail.ru>",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"rollup-plugin-string": "^3.0.0",
|
|
83
83
|
"rollup-plugin-styles": "^4.0.0",
|
|
84
84
|
"rollup-plugin-terser": "^7.0.2",
|
|
85
|
-
"rollup-plugin-typescript2": "^0.
|
|
85
|
+
"rollup-plugin-typescript2": "^0.33.0",
|
|
86
86
|
"sass": "^1.55.0",
|
|
87
87
|
"tmp": "^0.2.1",
|
|
88
88
|
"typescript": "^4.8.4",
|