@webflow/webflow-cli 1.18.0-next.1 → 1.18.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 +18 -0
- package/dist/index.js +79 -80
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @webflow/webflow-cli
|
|
2
2
|
|
|
3
|
+
## 1.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a51cd9f: Add `webflow sites` command group with subcommands for managing Webflow sites via the CLI.
|
|
8
|
+
|
|
9
|
+
- `sites list` — list all sites in a workspace, with `--fields` and `--json` support
|
|
10
|
+
- `sites get <siteId>` — get details for a specific site
|
|
11
|
+
- `sites domains --site <siteId>` — list custom domains configured for a site
|
|
12
|
+
- `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
|
|
13
|
+
|
|
14
|
+
- 3323193: Add `--sort-by` and `--order` flags to `assets list` and `cms collections list` commands.
|
|
15
|
+
|
|
16
|
+
- `assets list` supports `--sort-by` (displayName, originalFileName, contentType, size, lastUpdated) and `--order` (asc/desc, default asc)
|
|
17
|
+
- `cms collections list` supports `--sort-by` (displayName, slug, lastUpdated) and `--order` (asc/desc, default asc)
|
|
18
|
+
- Site picker now defaults to alphabetical order by display name
|
|
19
|
+
- Invalid flag values produce a clear error message with the list of valid options
|
|
20
|
+
|
|
3
21
|
## 1.17.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|