@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 +1 -1
- package/dist/deno.js +1 -1
- package/dist/init/test/lookup.js +4 -4
- package/package.json +5 -5
- package/src/init/test/lookup.ts +4 -4
package/deno.json
CHANGED
package/dist/deno.js
CHANGED
package/dist/init/test/lookup.js
CHANGED
|
@@ -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.
|
|
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/
|
|
75
|
-
"@fedify/
|
|
76
|
-
"@fedify/vocab-
|
|
77
|
-
"@fedify/vocab-
|
|
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",
|
package/src/init/test/lookup.ts
CHANGED
|
@@ -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
|
|