@webflow/webflow-cli 1.8.22 → 1.8.24

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @webflow/webflow-cli
2
2
 
3
+ ## 1.8.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Webflow Cloud deploy restore user's wrangler.json
8
+
9
+ ## 1.8.23
10
+
11
+ ### Patch Changes
12
+
13
+ - Webflow cloud scaffold deploy scripts
14
+
3
15
  ## 1.8.22
4
16
 
5
17
  ### Patch Changes
@@ -1,25 +1,26 @@
1
1
  {
2
- "name": "astro",
3
- "type": "module",
4
- "version": "0.0.1",
5
- "scripts": {
6
- "dev": "astro dev",
7
- "build": "astro build",
8
- "preview": "astro build && wrangler dev",
9
- "astro": "astro",
10
- "cf-typegen": "wrangler types"
11
- },
12
- "dependencies": {
13
- "@astrojs/cloudflare": "^12.5.0",
14
- "@astrojs/react": "^4.2.5",
15
- "@types/react": "^19.1.2",
16
- "@types/react-dom": "^19.1.2",
17
- "astro": "^5.7.0",
18
- "react": "^19.1.0",
19
- "react-dom": "^19.1.0"
20
- },
21
- "devDependencies": {
22
- "@cloudflare/workers-types": "^4.20250415.0",
23
- "wrangler": "^4.11.1"
24
- }
2
+ "name": "astro",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "scripts": {
6
+ "dev": "astro dev",
7
+ "build": "astro build",
8
+ "preview": "astro build && wrangler dev",
9
+ "deploy": "webflow cloud deploy",
10
+ "astro": "astro",
11
+ "cf-typegen": "wrangler types"
12
+ },
13
+ "dependencies": {
14
+ "@astrojs/cloudflare": "^12.5.0",
15
+ "@astrojs/react": "^4.2.5",
16
+ "@types/react": "^19.1.2",
17
+ "@types/react-dom": "^19.1.2",
18
+ "astro": "^5.7.0",
19
+ "react": "^19.1.0",
20
+ "react-dom": "^19.1.0"
21
+ },
22
+ "devDependencies": {
23
+ "@cloudflare/workers-types": "^4.20250415.0",
24
+ "wrangler": "^4.11.1"
25
+ }
25
26
  }
@@ -7,7 +7,7 @@
7
7
  "build": "next build",
8
8
  "start": "next start",
9
9
  "lint": "next lint",
10
- "deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
10
+ "deploy": "webflow cloud deploy",
11
11
  "preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
12
12
  "cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
13
13
  },