@webflow/webflow-cli 1.18.0-next.1 → 1.19.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 +34 -0
- package/dist/index.js +74 -74
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @webflow/webflow-cli
|
|
2
2
|
|
|
3
|
+
## 1.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5567029: Add `webflow devlink export` — generate a static, self-contained DevLink bundle of your Webflow components as local React code that runs without a build-time connection to Webflow.
|
|
8
|
+
|
|
9
|
+
- Filter what to export with `components` / `componentGroups` regex patterns in `webflow.json`.
|
|
10
|
+
- TypeScript or JavaScript output, auto-detected from your project (override via `ts`).
|
|
11
|
+
- Optional CSS style isolation (`cssScopes`)
|
|
12
|
+
- Configurable output location with `rootDir`, and rewrite link targets via `relativeHrefRoot` (string prefix or `false` to keep absolute URLs) to fit any project layout.
|
|
13
|
+
- Authenticate via OAuth (interactive) or `WEBFLOW_API_TOKEN` / `--api-token` for CI; target a site with `--site` or the manifest.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 4b1a858: Make code library selection searchable and sorted.
|
|
18
|
+
|
|
19
|
+
## 1.18.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- a51cd9f: Add `webflow sites` command group with subcommands for managing Webflow sites via the CLI.
|
|
24
|
+
|
|
25
|
+
- `sites list` — list all sites in a workspace, with `--fields` and `--json` support
|
|
26
|
+
- `sites get <siteId>` — get details for a specific site
|
|
27
|
+
- `sites domains --site <siteId>` — list custom domains configured for a site
|
|
28
|
+
- `sites publish --site <siteId>` — publish a site to the Webflow subdomain or custom domains, with optional `--page <pageId>` for single-page publishes and `--dry-run` support
|
|
29
|
+
|
|
30
|
+
- 3323193: Add `--sort-by` and `--order` flags to `assets list` and `cms collections list` commands.
|
|
31
|
+
|
|
32
|
+
- `assets list` supports `--sort-by` (displayName, originalFileName, contentType, size, lastUpdated) and `--order` (asc/desc, default asc)
|
|
33
|
+
- `cms collections list` supports `--sort-by` (displayName, slug, lastUpdated) and `--order` (asc/desc, default asc)
|
|
34
|
+
- Site picker now defaults to alphabetical order by display name
|
|
35
|
+
- Invalid flag values produce a clear error message with the list of valid options
|
|
36
|
+
|
|
3
37
|
## 1.17.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|