@webflow/webflow-cli 1.8.0 → 1.8.2
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 +12 -0
- package/dist/cloud-scaffolds/nextjs/eslint.config.mjs +1 -0
- package/dist/cloud-scaffolds/nextjs/package.json +33 -32
- package/dist/cloud-scaffolds/nextjs/postcss.config.mjs +1 -1
- package/dist/cloud-scaffolds/nextjs/src/app/globals.css +5 -0
- package/dist/cloud-scaffolds/nextjs/src/app/layout.tsx +0 -1
- package/dist/index.js +69 -69
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,34 @@
|
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
2
|
+
"name": "nextjs",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "next dev",
|
|
7
|
+
"build": "next build",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"lint": "next lint",
|
|
10
|
+
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
|
|
11
|
+
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
|
|
12
|
+
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"next": "15.2.5",
|
|
16
|
+
"react": "^19.0.0",
|
|
17
|
+
"react-dom": "^19.0.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@cloudflare/workers-types": "^4.20250415.0",
|
|
21
|
+
"@eslint/eslintrc": "^3",
|
|
22
|
+
"@opennextjs/cloudflare": "~1.0.0-beta.0 || ^1.0.0",
|
|
23
|
+
"@tailwindcss/postcss": "^4",
|
|
24
|
+
"@types/node": "^20",
|
|
25
|
+
"@types/react": "^19",
|
|
26
|
+
"@types/react-dom": "^19",
|
|
27
|
+
"eslint": "^9",
|
|
28
|
+
"eslint-config-next": "15.2.5",
|
|
29
|
+
"postcss-import": "^16.1.0",
|
|
30
|
+
"tailwindcss": "^4",
|
|
31
|
+
"typescript": "^5",
|
|
32
|
+
"wrangler": "^4.11.1"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/* If you want tailwind 'base' styles to override 'webflow' styles, re-order the layers */
|
|
2
|
+
@layer properties, theme, base, webflow, components, utilities;
|
|
3
|
+
|
|
4
|
+
/* Webflow global styles are imported in the 'webflow' layer */
|
|
5
|
+
@import "../devlink/global.css" layer(webflow);
|
|
1
6
|
@import "tailwindcss";
|
|
2
7
|
|
|
3
8
|
:root {
|