@webflow/webflow-cli 1.9.0 → 1.11.0
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 +18 -0
- package/LICENCE +3 -1
- package/dist/cloud-scaffolds/nextjs/package.json +2 -2
- package/dist/extension-scaffolds/react/README.md +2 -2
- package/dist/extension-scaffolds/react/package.json +2 -0
- package/dist/extension-scaffolds/typescript-alt/README.md +2 -2
- package/dist/index.js +80 -76
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @webflow/webflow-cli
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add support for custom renderers in code component libraries
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @webflow/data-types@1.2.0
|
|
13
|
+
|
|
14
|
+
## 1.10.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- Update nextJs version in Wefblow Cloud Scaffolding
|
|
19
|
+
- Add global `--manifest` flag to all CLI commands to setting a custom manifest path.
|
|
20
|
+
|
|
3
21
|
## 1.9.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/LICENCE
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"next": "15.2.
|
|
15
|
+
"next": "15.2.8 ",
|
|
16
16
|
"react": "^19.0.1",
|
|
17
17
|
"react-dom": "^19.0.0"
|
|
18
18
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/react": "^19",
|
|
26
26
|
"@types/react-dom": "^19",
|
|
27
27
|
"eslint": "^9",
|
|
28
|
-
"eslint-config-next": "15.2.
|
|
28
|
+
"eslint-config-next": "15.2.8",
|
|
29
29
|
"postcss-import": "^16.1.0",
|
|
30
30
|
"tailwindcss": "^4",
|
|
31
31
|
"typescript": "^5",
|
|
@@ -8,7 +8,7 @@ Explore the [documentation](https://developers.webflow.com/designer/reference/in
|
|
|
8
8
|
npm run dev
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
This command installs dependencies, watches for changes in the `src/` folder, and serves your extension files from `./
|
|
11
|
+
This command installs dependencies, watches for changes in the `src/` folder, and serves your extension files from `./public/`. Use the displayed URL as the "Development URL" in Webflow Designer's Apps panel to launch your extension.
|
|
12
12
|
|
|
13
13
|
## Build for Distribution
|
|
14
14
|
|
|
@@ -16,4 +16,4 @@ This command installs dependencies, watches for changes in the `src/` folder, an
|
|
|
16
16
|
npm run build
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
This command prepares a `${bundleFile}` in the
|
|
19
|
+
This command prepares a `${bundleFile}` in the root folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@webflow/designer-extension-typings": "^2.0.2",
|
|
13
13
|
"concurrently": "^8.2.2",
|
|
14
|
+
"css-loader": "^7.1.2",
|
|
14
15
|
"eslint": "^8.5.7",
|
|
15
16
|
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
16
17
|
"@typescript-eslint/parser": "^7.7.0",
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
"@babel/preset-env": "^7.23.2",
|
|
23
24
|
"@babel/preset-react": "^7.22.15",
|
|
24
25
|
"babel-loader": "^9.1.3",
|
|
26
|
+
"style-loader": "^4.0.0",
|
|
25
27
|
"ts-loader": "^9.5.1",
|
|
26
28
|
"webpack": "^5.89.0",
|
|
27
29
|
"webpack-cli": "^5.1.4",
|
|
@@ -8,7 +8,7 @@ Explore the [documentation](https://developers.webflow.com/designer/reference/in
|
|
|
8
8
|
npm run dev
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
This command installs dependencies, watches for changes in the `src/` folder, recompiles TypeScript files, and serves your extension files from
|
|
11
|
+
This command installs dependencies, watches for changes in the `src/` folder, recompiles TypeScript files, and serves your extension files from `public/`. Use the displayed URL as the "Development URL" in Webflow Designer's Apps panel to launch your extension.
|
|
12
12
|
|
|
13
13
|
## Deployment
|
|
14
14
|
|
|
@@ -16,4 +16,4 @@ This command installs dependencies, watches for changes in the `src/` folder, re
|
|
|
16
16
|
npm run build
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
This command prepares a `${bundleFile}` in the
|
|
19
|
+
This command prepares a `${bundleFile}` in the root folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
|