@arkstack/console 0.17.24 → 0.17.25
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 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -136,7 +136,7 @@ var DevCommand = class DevCommand extends Command {
|
|
|
136
136
|
static devServerEnv(options) {
|
|
137
137
|
const vars = {
|
|
138
138
|
NODE_ENV: "development",
|
|
139
|
-
APP_HOST: options.host ? "0.0.0.0" : "127.0.0.1",
|
|
139
|
+
APP_HOST: typeof options.host === "boolean" ? "0.0.0.0" : options.host ?? "127.0.0.1",
|
|
140
140
|
ARKSTACK_ENV_RELOAD: "true"
|
|
141
141
|
};
|
|
142
142
|
if (options.secure) vars.APP_SECURE = "true";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.25",
|
|
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.25"
|
|
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.25",
|
|
55
|
+
"@arkstack/contract": "^0.17.25"
|
|
56
56
|
},
|
|
57
57
|
"peerDependenciesMeta": {
|
|
58
58
|
"@arkstack/database": {
|