@webflow/webflow-cli 1.8.22 → 1.8.23
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 +6 -0
- package/dist/cloud-scaffolds/astro/package.json +24 -23
- package/dist/cloud-scaffolds/nextjs/package.json +1 -1
- package/dist/index.js +113 -110
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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": "
|
|
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
|
},
|