Skip to content

Commit fcb27da

Browse files
authoredMay 16, 2023
C3: Remove polling for deployment url at end of workflow (#3233)

File tree

7 files changed

+4
-86
lines changed

7 files changed

+4
-86
lines changed
 

‎package-lock.json

+2-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/create-cloudflare/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"execa": "^7.1.1",
4141
"haikunator": "^2.1.2",
4242
"log-update": "^5.0.1",
43-
"open": "^8.4.0",
4443
"recast": "^0.22.0",
4544
"typescript": "^5.0.2",
4645
"undici": "^5.22.0",

‎packages/create-cloudflare/src/cli.ts

-6
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ const parseArgs = async (argv: string[]) => {
3838
.option("framework", { type: "string" })
3939
.option("deploy", { type: "boolean" })
4040
.option("ts", { type: "boolean" })
41-
.option("open", {
42-
type: "boolean",
43-
default: true,
44-
description:
45-
"opens your browser after your deployment, set --no-open to disable",
46-
})
4741
.help().argv;
4842

4943
const [name] = args._;

‎packages/create-cloudflare/src/common.ts

+2-26
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
log,
88
logRaw,
99
newline,
10-
openInBrowser,
1110
shapes,
1211
startSection,
1312
} from "helpers/cli";
@@ -18,8 +17,7 @@ import {
1817
runCommand,
1918
wranglerLogin,
2019
} from "helpers/command";
21-
import { confirmInput, selectInput, spinner } from "helpers/interactive";
22-
import { poll } from "helpers/poll";
20+
import { confirmInput, selectInput } from "helpers/interactive";
2321
import type { Option } from "helpers/interactive";
2422
import type { PagesGeneratorArgs, PagesGeneratorContext } from "types";
2523

@@ -161,6 +159,7 @@ export const printSummary = async (ctx: PagesGeneratorContext) => {
161159
`${bgGreen(" SUCCESS ")}`,
162160
`${dim(`View your deployed application at`)}`,
163161
`${blue(ctx.deployedUrl)}`,
162+
`${dim(`(this may take a few mins)`)}`,
164163
].join(" ");
165164
logRaw(msg);
166165
} else {
@@ -181,28 +180,5 @@ export const printSummary = async (ctx: PagesGeneratorContext) => {
181180
});
182181
newline();
183182

184-
if (ctx.deployedUrl) {
185-
const s = spinner();
186-
s.start("Waiting for deployment to become available");
187-
188-
const success = await poll(ctx.deployedUrl);
189-
190-
if (success) {
191-
s.stop(
192-
`${brandColor("deployment")} ${dim("is ready at:")} ${blue(
193-
ctx.deployedUrl
194-
)}`
195-
);
196-
197-
if (ctx.args.open) {
198-
await openInBrowser(ctx.deployedUrl);
199-
}
200-
} else {
201-
s.stop(
202-
`${brandColor("deployment")} timed out waiting for ${ctx.deployedUrl}.`
203-
);
204-
}
205-
}
206-
207183
endSection("See you again soon!");
208184
};

‎packages/create-cloudflare/src/helpers/cli.ts

-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { exit } from "process";
2-
import open from "open";
32
import { brandColor, dim, gray, white, red, hidden, bgRed } from "./colors";
43

54
export const shapes = {
@@ -112,19 +111,3 @@ export const crash = (msg?: string): never => {
112111
}
113112
exit(1);
114113
};
115-
116-
/**
117-
* An extremely simple wrapper around the open command.
118-
* Specifically, it adds an 'error' event handler so that when this function
119-
* is called in environments where we can't open the browser (e.g. GitHub Codespaces,
120-
* StackBlitz, remote servers), it doesn't just crash the process.
121-
*
122-
* @param url the URL to point the browser at
123-
*/
124-
export async function openInBrowser(url: string): Promise<void> {
125-
updateStatus("Opening browser");
126-
const childProcess = await open(url);
127-
childProcess.on("error", () => {
128-
warn("Failed to open browser");
129-
});
130-
}

‎packages/create-cloudflare/src/helpers/poll.ts

-31
This file was deleted.

‎packages/create-cloudflare/src/types.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export type PagesGeneratorArgs = {
99
frameworkChoices?: FrameworkName[];
1010
deploy?: boolean;
1111
ts?: boolean;
12-
open: boolean;
1312
};
1413

1514
export type PagesGeneratorContext = {

0 commit comments

Comments
 (0)
Please sign in to comment.