innetjs 2.2.15 → 2.2.16
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
|
@@ -765,9 +765,9 @@ class InnetJS {
|
|
|
765
765
|
}
|
|
766
766
|
|
|
767
767
|
(function () {
|
|
768
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
768
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.16"};
|
|
769
769
|
if (typeof process === 'undefined') {
|
|
770
|
-
process = { env };
|
|
770
|
+
globalThis.process = { env: env };
|
|
771
771
|
} else if (process.env) {
|
|
772
772
|
Object.assign(process.env, env);
|
|
773
773
|
} else {
|
package/index.js
CHANGED
|
@@ -71,9 +71,9 @@ var typescript__default = /*#__PURE__*/_interopDefaultLegacy(typescript);
|
|
|
71
71
|
var tmp__default = /*#__PURE__*/_interopDefaultLegacy(tmp);
|
|
72
72
|
|
|
73
73
|
(function () {
|
|
74
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
74
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.16"};
|
|
75
75
|
if (typeof process === 'undefined') {
|
|
76
|
-
process = { env };
|
|
76
|
+
globalThis.process = { env: env };
|
|
77
77
|
} else if (process.env) {
|
|
78
78
|
Object.assign(process.env, env);
|
|
79
79
|
} else {
|
package/index.mjs
CHANGED
|
@@ -37,9 +37,9 @@ import { reporter, convertIndexFile, getFile } from './helpers.mjs';
|
|
|
37
37
|
import { updateDotenv } from './updateDotenv.mjs';
|
|
38
38
|
|
|
39
39
|
(function () {
|
|
40
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.
|
|
40
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.2.16"};
|
|
41
41
|
if (typeof process === 'undefined') {
|
|
42
|
-
process = { env };
|
|
42
|
+
globalThis.process = { env: env };
|
|
43
43
|
} else if (process.env) {
|
|
44
44
|
Object.assign(process.env, env);
|
|
45
45
|
} else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "innetjs",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.16",
|
|
4
4
|
"description": "CLI for innet boilerplate",
|
|
5
5
|
"homepage": "https://github.com/d8corp/innetjs",
|
|
6
6
|
"author": "Mikhail Lysikov <d8corp@mail.ru>",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"prompts": "^2.4.2",
|
|
73
73
|
"rollup": "^2.79.1",
|
|
74
74
|
"rollup-plugin-filesize": "^9.1.2",
|
|
75
|
-
"rollup-plugin-process-env": "^1.0.
|
|
75
|
+
"rollup-plugin-process-env": "^1.0.4",
|
|
76
76
|
"rollup-plugin-innet-jsx": "^1.3.2",
|
|
77
77
|
"rollup-plugin-livereload": "^2.0.5",
|
|
78
78
|
"rollup-plugin-node-externals": "^5.0.2",
|