@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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @webflow/webflow-cli
2
2
 
3
+ ## 1.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Added prompts when using extension init
8
+
9
+ ## 1.8.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Update Cloud NextJS scaffold eslint rules
14
+
3
15
  ## 1.8.0
4
16
 
5
17
  ### Minor Changes
@@ -11,6 +11,7 @@ const compat = new FlatCompat({
11
11
 
12
12
  const eslintConfig = [
13
13
  ...compat.extends("next/core-web-vitals", "next/typescript"),
14
+ { ignorePatterns: ["**/devlink/**"] },
14
15
  ];
15
16
 
16
17
  export default eslintConfig;
@@ -1,33 +1,34 @@
1
1
  {
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
- "tailwindcss": "^4",
30
- "typescript": "^5",
31
- "wrangler": "^4.11.1"
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,5 +1,5 @@
1
1
  const config = {
2
- plugins: ["@tailwindcss/postcss"],
2
+ plugins: ["@tailwindcss/postcss", "postcss-import"],
3
3
  };
4
4
 
5
5
  export default config;
@@ -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 {
@@ -1,7 +1,6 @@
1
1
  import type { Metadata } from "next";
2
2
  import { Geist, Geist_Mono, Inter } from "next/font/google";
3
3
  import "./globals.css";
4
- import "@/devlink/global.css";
5
4
  import { DevLinkProvider } from "@/devlink/DevLinkProvider";
6
5
 
7
6
  const inter = Inter({