@webflow/webflow-cli 1.17.0-next.0 → 1.17.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,27 @@
1
1
  # @webflow/webflow-cli
2
2
 
3
+ ## 1.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3d88fbe: Evaluate code-library bundles with JSDOM-backed `window` / `document` (and related bindings) in scope, so metadata extraction no longer throws when bundles reference browser-only globals at load time.
8
+
9
+ ## 1.17.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 7026abb: Add `webflow assets` command group with `list`, `upload`, `update`, and `folders` subcommands for managing Webflow site assets via the CLI.
14
+ - fcd0c01: Add `webflow devlink bundle` as an alias for `webflow library bundle`.
15
+ - 557c7fc: Improve site selection UX: replace plain list with searchable prompt, sort by recently updated, show site slug for disambiguation
16
+
17
+ ### Patch Changes
18
+
19
+ - 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.
20
+ - 8e687ab: Fix column alignment in CMS list command output — headers now line up with data rows.
21
+ - e8eba7f: Replace all `@typescript-eslint/no-explicit-any` usages with `unknown` and proper type casts
22
+ - 382788c: Fix no-non-null-assertion ESLint warnings: replace non-null assertions with explicit runtime guards
23
+ - 8d43aa4: Fix no-unused-vars ESLint warnings: update ESLint config with underscore ignore pattern, remove dead imports, and prefix intentionally unused variables
24
+
3
25
  ## 1.15.1
4
26
 
5
27
  ### 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 {