@jsenv/core 27.5.0 → 27.5.1
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/main.js +5 -3
- package/package.json +1 -1
- package/src/dev/start_dev_server.js +5 -3
package/dist/main.js
CHANGED
|
@@ -23641,14 +23641,15 @@ const startDevServer = async ({
|
|
|
23641
23641
|
handleSIGINT = true,
|
|
23642
23642
|
logLevel = "info",
|
|
23643
23643
|
omegaServerLogLevel = "warn",
|
|
23644
|
-
port = 3456,
|
|
23645
23644
|
protocol = "http",
|
|
23646
|
-
acceptAnyIp,
|
|
23647
23645
|
// it's better to use http1 by default because it allows to get statusText in devtools
|
|
23648
23646
|
// which gives valuable information when there is errors
|
|
23649
23647
|
http2 = false,
|
|
23650
23648
|
certificate,
|
|
23651
23649
|
privateKey,
|
|
23650
|
+
host,
|
|
23651
|
+
port = 3456,
|
|
23652
|
+
acceptAnyIp,
|
|
23652
23653
|
keepProcessAlive = true,
|
|
23653
23654
|
services,
|
|
23654
23655
|
rootDirectoryUrl,
|
|
@@ -23786,11 +23787,12 @@ const startDevServer = async ({
|
|
|
23786
23787
|
logLevel: omegaServerLogLevel,
|
|
23787
23788
|
keepProcessAlive,
|
|
23788
23789
|
acceptAnyIp,
|
|
23789
|
-
port,
|
|
23790
23790
|
protocol,
|
|
23791
23791
|
http2,
|
|
23792
23792
|
certificate,
|
|
23793
23793
|
privateKey,
|
|
23794
|
+
host,
|
|
23795
|
+
port,
|
|
23794
23796
|
services,
|
|
23795
23797
|
rootDirectoryUrl,
|
|
23796
23798
|
scenario: "dev",
|
package/package.json
CHANGED
|
@@ -15,14 +15,15 @@ export const startDevServer = async ({
|
|
|
15
15
|
handleSIGINT = true,
|
|
16
16
|
logLevel = "info",
|
|
17
17
|
omegaServerLogLevel = "warn",
|
|
18
|
-
port = 3456,
|
|
19
18
|
protocol = "http",
|
|
20
|
-
acceptAnyIp,
|
|
21
19
|
// it's better to use http1 by default because it allows to get statusText in devtools
|
|
22
20
|
// which gives valuable information when there is errors
|
|
23
21
|
http2 = false,
|
|
24
22
|
certificate,
|
|
25
23
|
privateKey,
|
|
24
|
+
host,
|
|
25
|
+
port = 3456,
|
|
26
|
+
acceptAnyIp,
|
|
26
27
|
keepProcessAlive = true,
|
|
27
28
|
services,
|
|
28
29
|
|
|
@@ -148,11 +149,12 @@ export const startDevServer = async ({
|
|
|
148
149
|
logLevel: omegaServerLogLevel,
|
|
149
150
|
keepProcessAlive,
|
|
150
151
|
acceptAnyIp,
|
|
151
|
-
port,
|
|
152
152
|
protocol,
|
|
153
153
|
http2,
|
|
154
154
|
certificate,
|
|
155
155
|
privateKey,
|
|
156
|
+
host,
|
|
157
|
+
port,
|
|
156
158
|
services,
|
|
157
159
|
|
|
158
160
|
rootDirectoryUrl,
|