@webflow/webflow-cli 2.5.0 → 2.6.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 +14 -0
- package/README.md +2 -0
- package/dist/index.js +200 -198
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/extension-scaffolds/default/.eslintrc +0 -25
- package/dist/extension-scaffolds/react/.eslintrc +0 -25
- package/dist/extension-scaffolds/typescript-alt/.eslintrc +0 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @webflow/webflow-cli
|
|
2
2
|
|
|
3
|
+
## 2.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4354c28: After a `cloud`, `devlink`, `extension`, `auth`, or `apps` command succeeds, the CLI now checks once whether the coding agents on your machine have the Webflow skills installed, and offers to install them if they don't. The `apps` command exists on the `@next` build only, so a stable install has no `apps` command to trigger it. You'll see a line naming the agents it found, then a yes/no question; answer either way and it never asks again. Saying yes installs the five `webflow-cli` skills globally — the same place the check looked — so your agent picks them up in every project.
|
|
8
|
+
|
|
9
|
+
Nothing about it can affect the command you actually ran. It only appears after the command has already finished successfully, it never runs under `--json`, in CI, or anywhere without a TTY, and a failed install leaves your exit code alone. `extension serve` and `auth status` are excluded. Set `WEBFLOW_NO_SKILLS_PROMPT` to turn it off entirely.
|
|
10
|
+
|
|
11
|
+
Also stops the `--api-token` value from being recorded in the telemetry `command` field. Previously the token you passed to `devlink sync`, `devlink export`, `devlink import`, or `devlink bundle` was sent verbatim alongside the rest of your command line.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e48ba9a: Patch the transitive `ws` memory-exhaustion denial-of-service vulnerability used by the CLI's module-federation and JSDOM dependencies.
|
|
16
|
+
|
|
3
17
|
## 2.5.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -299,6 +299,8 @@ webflow extension bundle # Build and package for upload (outputs bundle.z
|
|
|
299
299
|
|
|
300
300
|
## Apps (Webflow Cloud)
|
|
301
301
|
|
|
302
|
+
> `apps env-vars` commands are in beta and ship only in `@next` builds (`npm i -g @webflow/webflow-cli@next`). They aren't registered in the stable release yet.
|
|
303
|
+
|
|
302
304
|
Manage Webflow Cloud app environment variables non-interactively. `--app-id` and
|
|
303
305
|
`--environment-id` default from `webflow.json` (`cloud.app_id` / `cloud.environment_id`)
|
|
304
306
|
when omitted.
|