@webflow/webflow-cli 1.7.1 → 1.7.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 +6 -0
- package/dist/cloud-scaffolds/astro/package.json.bak +25 -0
- package/dist/cloud-scaffolds/nextjs/package.json.bak +33 -0
- package/dist/cloud-scaffolds/nextjs/src/app/layout.tsx +7 -3
- package/dist/cloud-scaffolds/nextjs/src/app/page.tsx +1 -1
- package/dist/cloud-scaffolds/nextjs/webflow.json +1 -1
- package/dist/extension-scaffolds/default/package.json.bak +20 -0
- package/dist/extension-scaffolds/react/package.json.bak +39 -0
- package/dist/extension-scaffolds/typescript-alt/package.json.bak +20 -0
- package/dist/index.js +770 -749
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
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 "
|
|
5
|
-
import { DevLinkProvider } from "
|
|
4
|
+
import "@/devlink/global.css";
|
|
5
|
+
import { DevLinkProvider } from "@/devlink/DevLinkProvider";
|
|
6
6
|
|
|
7
7
|
const inter = Inter({
|
|
8
8
|
subsets: ["latin"],
|
|
@@ -34,7 +34,11 @@ export default function RootLayout({
|
|
|
34
34
|
<body
|
|
35
35
|
className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased`}
|
|
36
36
|
>
|
|
37
|
-
<DevLinkProvider>
|
|
37
|
+
<DevLinkProvider>
|
|
38
|
+
{/* Add here any Navbar or Header you want to be present on all pages */}
|
|
39
|
+
{children}
|
|
40
|
+
{/* Add here any Footer you want to be present on all pages */}
|
|
41
|
+
</DevLinkProvider>
|
|
38
42
|
</body>
|
|
39
43
|
</html>
|
|
40
44
|
);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wf-placeholder-name",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "npm install && tsc -p tsconfig.json && webflow extension bundle",
|
|
8
|
+
"dev": "npm install && concurrently -r \"webflow extension serve\" \"tsc -p tsconfig.json --watch --preserveWatchOutput\"",
|
|
9
|
+
"lint": "eslint . --ext .ts"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@webflow/designer-extension-typings": "^2.0.2",
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
14
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
15
|
+
"eslint": "^8.5.7",
|
|
16
|
+
"concurrently": "^8.2.2",
|
|
17
|
+
"typescript": "^5.4.5",
|
|
18
|
+
"eslint-plugin-promise": "^6.1.1"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wf-placeholder-name",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"dev": "npm install && concurrently \"webflow extension serve\" \"npm run watch-webpack\"",
|
|
6
|
+
"build": "npm run build-webpack && webflow extension bundle",
|
|
7
|
+
"watch-webpack": "webpack --config webpack.config.mjs --mode development --watch",
|
|
8
|
+
"build-webpack": "webpack --config webpack.config.mjs --mode production",
|
|
9
|
+
"lint": "eslint . --ext .ts,.tsx"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@webflow/designer-extension-typings": "^2.0.2",
|
|
13
|
+
"concurrently": "^8.2.2",
|
|
14
|
+
"eslint": "^8.5.7",
|
|
15
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
16
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
17
|
+
"typescript": "^5.4.5",
|
|
18
|
+
"react-dom": "^18.2.0",
|
|
19
|
+
"react": "^18.2.0",
|
|
20
|
+
"@types/react": "^18.2.79",
|
|
21
|
+
"@types/react-dom": "^18.2.25",
|
|
22
|
+
"@babel/preset-env": "^7.23.2",
|
|
23
|
+
"@babel/preset-react": "^7.22.15",
|
|
24
|
+
"babel-loader": "^9.1.3",
|
|
25
|
+
"ts-loader": "^9.5.1",
|
|
26
|
+
"webpack": "^5.89.0",
|
|
27
|
+
"webpack-cli": "^5.1.4",
|
|
28
|
+
"eslint-plugin-promise": "^6.1.1"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"react-dom": "^18.2.0"
|
|
32
|
+
},
|
|
33
|
+
"babel": {
|
|
34
|
+
"presets": [
|
|
35
|
+
"@babel/preset-env",
|
|
36
|
+
"@babel/preset-react"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wf-placeholder-name",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "npm install && tsc -p tsconfig.json && webflow extension bundle",
|
|
8
|
+
"dev": "npm install && concurrently -r \"webflow extension serve\" \"tsc -p tsconfig.json --watch --preserveWatchOutput\"",
|
|
9
|
+
"lint": "eslint . --ext .ts"
|
|
10
|
+
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@webflow/designer-extension-typings": "^2.0.2",
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
14
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
15
|
+
"eslint": "^8.5.7",
|
|
16
|
+
"concurrently": "^8.2.2",
|
|
17
|
+
"typescript": "^5.4.5",
|
|
18
|
+
"eslint-plugin-promise": "^6.1.1"
|
|
19
|
+
}
|
|
20
|
+
}
|