@webflow/webflow-cli 1.10.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 CHANGED
@@ -1,5 +1,16 @@
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
+
3
14
  ## 1.10.0
4
15
 
5
16
  ### 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.