edgeone 1.0.26 → 1.0.27
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/edgeone-dist/cli.js +5 -2
- package/package.json +1 -1
package/edgeone-dist/cli.js
CHANGED
|
@@ -142949,7 +142949,7 @@ var yargs_default = Yargs;
|
|
|
142949
142949
|
// package.json
|
|
142950
142950
|
var package_default = {
|
|
142951
142951
|
name: "edgeone",
|
|
142952
|
-
version: "1.0.
|
|
142952
|
+
version: "1.0.27",
|
|
142953
142953
|
description: "Command-line interface for TencentCloud Pages Functions",
|
|
142954
142954
|
bin: {
|
|
142955
142955
|
edgeone: "./edgeone-bin/edgeone.js"
|
|
@@ -153385,7 +153385,10 @@ async function PagesDev(yargs) {
|
|
|
153385
153385
|
normalLog("Dev server running in raw mode...");
|
|
153386
153386
|
}
|
|
153387
153387
|
if (yargs.fePort) {
|
|
153388
|
-
devConfig.
|
|
153388
|
+
devConfig.fePort = yargs.fePort;
|
|
153389
|
+
}
|
|
153390
|
+
if (yargs.port) {
|
|
153391
|
+
devConfig.port = yargs.port;
|
|
153389
153392
|
}
|
|
153390
153393
|
return await PagesDevServer(devConfig).then(() => {
|
|
153391
153394
|
setTimeout(
|