Skip to content

Commit ea433c2

Browse files
committed
Address review: bringing up before and after
1 parent a942be8 commit ea433c2

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/content/changelog/workers/2025-09-09-interactive-wrangler-assets.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ date: 2025-09-09
88

99
Deploying static site to Workers is now easier. When you run `wrangler deploy [directory]` or `wrangler deploy --assets [directory]` without an existing [configuration file](/workers/wrangler/configuration/), [Wrangler CLI](/workers/wrangler/) now guides you through the deployment process with interactive prompts.
1010

11+
## Before and after
12+
13+
**Before:** Required remembering multiple flags and parameters
14+
```bash
15+
wrangler deploy --assets ./dist --compatibility-date 2025-09-09 --name my-project
16+
```
17+
18+
**After:** Simple directory deployment with guided setup
19+
```bash
20+
wrangler deploy dist
21+
# Interactive prompts handle the rest as shown in the example flow above
22+
```
23+
1124
## What's new
1225

1326
**Interactive prompts for missing configuration:**
@@ -44,19 +57,6 @@ wrangler deploy dist
4457
wrangler deploy
4558
```
4659

47-
## Before and after
48-
49-
**Before:** Required remembering multiple flags and parameters
50-
```bash
51-
wrangler deploy --assets ./dist --compatibility-date 2025-09-09 --name my-project
52-
```
53-
54-
**After:** Simple directory deployment with guided setup
55-
```bash
56-
wrangler deploy dist
57-
# Interactive prompts handle the rest as shown in the example flow above
58-
```
59-
6060
## Requirements
6161

6262
- You must use Wrangler version 4.24.4 or later in order to use this feature

0 commit comments

Comments
 (0)