@webflow/webflow-cli 1.16.0 → 1.17.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,21 @@
1
1
  # @webflow/webflow-cli
2
2
 
3
+ ## 1.17.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7026abb: Add `webflow assets` command group with `list`, `upload`, `update`, and `folders` subcommands for managing Webflow site assets via the CLI.
8
+ - fcd0c01: Add `webflow devlink bundle` as an alias for `webflow library bundle`.
9
+ - 557c7fc: Improve site selection UX: replace plain list with searchable prompt, sort by recently updated, show site slug for disambiguation
10
+
11
+ ### Patch Changes
12
+
13
+ - 62f928a: DevLink: `global.css` now lives inside the `css/` subfolder of the exported bundle (`devlink/css/global.css`). The Next.js and Astro scaffold imports are updated automatically. If you integrate DevLink output into a custom build, update your CSS import path by one segment.
14
+ - 8e687ab: Fix column alignment in CMS list command output — headers now line up with data rows.
15
+ - e8eba7f: Replace all `@typescript-eslint/no-explicit-any` usages with `unknown` and proper type casts
16
+ - 382788c: Fix no-non-null-assertion ESLint warnings: replace non-null assertions with explicit runtime guards
17
+ - 8d43aa4: Fix no-unused-vars ESLint warnings: update ESLint config with underscore ignore pattern, remove dead imports, and prefix intentionally unused variables
18
+
3
19
  ## 1.15.1
4
20
 
5
21
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  import { DevLinkProvider } from '../../devlink/DevLinkProvider.js';
3
- import "../../devlink/global.css"; // Webflow Styles
3
+ import "../../devlink/css/global.css"; // Webflow Styles
4
4
  ---
5
5
 
6
6
  <!doctype html>
@@ -2,7 +2,7 @@
2
2
  @layer properties, theme, base, webflow, components, utilities;
3
3
 
4
4
  /* Webflow global styles are imported in the 'webflow' layer */
5
- @import "../devlink/global.css" layer(webflow);
5
+ @import "../devlink/css/global.css" layer(webflow);
6
6
  @import "tailwindcss";
7
7
 
8
8
  :root {