@webflow/webflow-cli 1.10.0 → 1.11.1
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 +19 -0
- package/LICENCE +3 -1
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @webflow/webflow-cli
|
|
2
2
|
|
|
3
|
+
## 1.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Mount path normalization and validation update for webflow cloud
|
|
8
|
+
- Configuration fixes
|
|
9
|
+
- Fix code component library bundler to resolve paths correctly on Windows
|
|
10
|
+
|
|
11
|
+
## 1.11.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- Add support for custom renderers in code component libraries
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @webflow/data-types@1.2.0
|
|
21
|
+
|
|
3
22
|
## 1.10.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/LICENCE
CHANGED
|
@@ -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.
|