@arkstack/console 0.17.18 → 0.17.19
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/dist/index.js +1 -4
- package/dist/prepare.js +2 -0
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -70,10 +70,7 @@ var DevCommand = class DevCommand extends Command {
|
|
|
70
70
|
domain: env("NGROK_DOMAIN")
|
|
71
71
|
});
|
|
72
72
|
const url = tunnel.url();
|
|
73
|
-
if (url)
|
|
74
|
-
vars.TUNNEL_URL = url;
|
|
75
|
-
console.log(`Traffic has been tunnelled to ${url}`);
|
|
76
|
-
}
|
|
73
|
+
if (url) vars.TUNNEL_URL = url;
|
|
77
74
|
}
|
|
78
75
|
const [command, args] = bin ? [process.execPath, [
|
|
79
76
|
bin,
|
package/dist/prepare.js
CHANGED
|
@@ -73,6 +73,8 @@ var ArkormArtifacts = class ArkormArtifacts {
|
|
|
73
73
|
|
|
74
74
|
//#endregion
|
|
75
75
|
//#region dist/prepare.js
|
|
76
|
+
if (!globalThis.env) globalThis.env = (await import("@arkstack/common")).env;
|
|
77
|
+
if (!globalThis.config) globalThis.config = (await import("@arkstack/common")).config;
|
|
76
78
|
if (!existsSync(path.join(Arkstack.rootDir(), ".arkstack/build"))) mkdirSync(path.join(Arkstack.rootDir(), ".arkstack/build"), { recursive: true });
|
|
77
79
|
if (!process.env.NODE_CI) {
|
|
78
80
|
BuildInterfaces.configs();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Console module for Arkstack, providing the command-line runtime and console integration layer.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net/guide/cli",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"arkormx": "^2.12.8",
|
|
44
44
|
"clear-router": "^2.9.3",
|
|
45
|
-
"@arkstack/database": "^0.17.
|
|
45
|
+
"@arkstack/database": "^0.17.19"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@ngrok/ngrok": "^1.7.0",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"chalk": "^5.6.2",
|
|
52
52
|
"resora": "^1.3.34",
|
|
53
53
|
"ts-morph": "^28.0.0",
|
|
54
|
-
"@arkstack/common": "^0.17.
|
|
55
|
-
"@arkstack/contract": "^0.17.
|
|
54
|
+
"@arkstack/common": "^0.17.19",
|
|
55
|
+
"@arkstack/contract": "^0.17.19"
|
|
56
56
|
},
|
|
57
57
|
"peerDependenciesMeta": {
|
|
58
58
|
"@arkstack/database": {
|