@fedify/cli 2.0.0-pr.479.1900 → 2.0.0-pr.479.1902

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/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.0.0-pr.479.1900+0b40bf02",
3
+ "version": "2.0.0-pr.479.1902+5ac1b5d2",
4
4
  "license": "MIT",
5
5
  "exports": "./src/mod.ts",
6
6
  "imports": {
package/dist/deno.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  //#region deno.json
5
5
  var name = "@fedify/cli";
6
- var version = "2.0.0-pr.479.1900+0b40bf02";
6
+ var version = "2.0.0-pr.479.1902+5ac1b5d2";
7
7
  var license = "MIT";
8
8
  var exports = "./src/mod.ts";
9
9
  var imports = {
@@ -63,7 +63,7 @@ async function testApp(dir) {
63
63
  mq
64
64
  ])}!`;
65
65
  if (!result) printMessage` Check out these files for more details:
66
- ${join(dir, "out.txt")}
66
+ ${join(dir, "out.txt")} and
67
67
  ${join(dir, "err.txt")}\n`;
68
68
  printMessage`\n`;
69
69
  return result;
@@ -146,9 +146,9 @@ function determinePort(server) {
146
146
  /listening on.*:(\d+)/i,
147
147
  /server.*:(\d+)/i,
148
148
  /port\s*:?\s*(\d+)/i,
149
- /localhost:(\d+)/i,
150
- /0\.0\.0\.0:(\d+)/i,
151
- /127\.0\.0\.1:(\d+)/i,
149
+ /https?:localhost:(\d+)/i,
150
+ /https?:0\.0\.0\.0:(\d+)/i,
151
+ /https?:127\.0\.0\.1:(\d+)/i,
152
152
  /https?:\/\/[^:]+:(\d+)/i
153
153
  ];
154
154
  const checkForPort = (data) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.0.0-pr.479.1900+0b40bf02",
3
+ "version": "2.0.0-pr.479.1902+5ac1b5d2",
4
4
  "description": "CLI toolchain for Fedify and debugging ActivityPub",
5
5
  "keywords": [
6
6
  "fedify",
@@ -71,10 +71,10 @@
71
71
  "ora": "^8.2.0",
72
72
  "shiki": "^1.6.4",
73
73
  "srvx": "^0.8.7",
74
- "@fedify/sqlite": "2.0.0-pr.479.1900+0b40bf02",
75
- "@fedify/fedify": "2.0.0-pr.479.1900+0b40bf02",
76
- "@fedify/vocab-tools": "2.0.0-pr.479.1900+0b40bf02",
77
- "@fedify/vocab-runtime": "2.0.0-pr.479.1900+0b40bf02"
74
+ "@fedify/fedify": "2.0.0-pr.479.1902+5ac1b5d2",
75
+ "@fedify/sqlite": "2.0.0-pr.479.1902+5ac1b5d2",
76
+ "@fedify/vocab-runtime": "2.0.0-pr.479.1902+5ac1b5d2",
77
+ "@fedify/vocab-tools": "2.0.0-pr.479.1902+5ac1b5d2"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@types/bun": "^1.2.23",
@@ -87,7 +87,7 @@ async function testApp(dir: string): Promise<boolean> {
87
87
  }!`;
88
88
  if (!result) {
89
89
  printMessage` Check out these files for more details:
90
- ${join(dir, "out.txt")}
90
+ ${join(dir, "out.txt")} and
91
91
  ${join(dir, "err.txt")}\n`;
92
92
  }
93
93
  printMessage`\n`;
@@ -204,9 +204,9 @@ function determinePort(
204
204
  /listening on.*:(\d+)/i,
205
205
  /server.*:(\d+)/i,
206
206
  /port\s*:?\s*(\d+)/i,
207
- /localhost:(\d+)/i,
208
- /0\.0\.0\.0:(\d+)/i,
209
- /127\.0\.0\.1:(\d+)/i,
207
+ /https?:localhost:(\d+)/i,
208
+ /https?:0\.0\.0\.0:(\d+)/i,
209
+ /https?:127\.0\.0\.1:(\d+)/i,
210
210
  /https?:\/\/[^:]+:(\d+)/i,
211
211
  ];
212
212