@webflow/webflow-cli 1.8.2 → 1.8.4

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.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Webflow Cloud CLI deploy command
8
+
9
+ ## 1.8.3
10
+
11
+ ### Patch Changes
12
+
13
+ - Node 20 upgrade
14
+
3
15
  ## 1.8.2
4
16
 
5
17
  ### Patch Changes
@@ -26,3 +26,6 @@ pnpm-debug.log*
26
26
  # wrangler files
27
27
  .wrangler
28
28
  .dev.vars*
29
+
30
+ # webflow cli build artifacts
31
+ .tmp/
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "node_modules/wrangler/config-schema.json",
3
+ "name": "astro",
4
+ "main": "./dist/_worker.js/index.js",
5
+ "compatibility_date": "2025-04-15",
6
+ "compatibility_flags": ["nodejs_compat"],
7
+ "assets": {
8
+ "binding": "ASSETS",
9
+ "directory": "./dist"
10
+ },
11
+ "observability": {
12
+ "enabled": true
13
+ }
14
+ }
@@ -42,3 +42,6 @@ next-env.d.ts
42
42
  # wrangler files
43
43
  .wrangler
44
44
  .dev.vars*
45
+
46
+ # webflow cli build artifacts
47
+ .tmp/
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "node_modules/wrangler/config-schema.json",
3
+ "name": "nextjs",
4
+ "main": ".open-next/worker.js",
5
+ "compatibility_date": "2025-03-01",
6
+ "compatibility_flags": ["nodejs_compat"],
7
+ "assets": {
8
+ "binding": "ASSETS",
9
+ "directory": ".open-next/assets"
10
+ },
11
+ "observability": {
12
+ "enabled": true
13
+ }
14
+ }