We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ca7bae commit 3133d6fCopy full SHA for 3133d6f
packages/cli/src/init/test/lookup.ts
@@ -87,7 +87,7 @@ async function testApp(dir: string): Promise<boolean> {
87
}!`;
88
if (!result) {
89
printMessage` Check out these files for more details:
90
- ${join(dir, "out.txt")}
+ ${join(dir, "out.txt")} and
91
${join(dir, "err.txt")}\n`;
92
}
93
printMessage`\n`;
@@ -204,9 +204,9 @@ function determinePort(
204
/listening on.*:(\d+)/i,
205
/server.*:(\d+)/i,
206
/port\s*:?\s*(\d+)/i,
207
- /localhost:(\d+)/i,
208
- /0\.0\.0\.0:(\d+)/i,
209
- /127\.0\.0\.1:(\d+)/i,
+ /https?:localhost:(\d+)/i,
+ /https?:0\.0\.0\.0:(\d+)/i,
+ /https?:127\.0\.0\.1:(\d+)/i,
210
/https?:\/\/[^:]+:(\d+)/i,
211
];
212
0 commit comments