@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 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
@@ -1,4 +1,6 @@
1
- Copyright (c) 2025 Webflow, Inc
1
+ MIT license
2
+
3
+ Copyright (c) 2026 Webflow, Inc
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person ob-
4
6
  taining a copy of this software and associated documentation
@@ -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 `./dist/`. Use the displayed URL as the "Development URL" in Webflow Designer's Apps panel to launch your extension.
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 `./dist/` folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
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 `${defaultPublicDir}/`. Use the displayed URL as the "Development URL" in Webflow Designer's Apps panel to launch your extension.
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 `./public` folder. Upload this `bundle.zip` file for distributing the App inside of your workspace or via the Marketplace.
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.