@walkeros/cli 4.4.0 → 4.5.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 +29 -0
- package/dist/cli.js +2068 -1886
- package/dist/index.d.ts +919 -0
- package/dist/index.js +130 -117
- package/dist/index.js.map +1 -1
- package/openapi/spec.json +6354 -4980
- package/package.json +25 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 4.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5977896: `walkeros setup` now resolves a component's package the same way
|
|
8
|
+
`walkeros bundle` does: the flow's pinned version is downloaded from the
|
|
9
|
+
registry (sharing the bundle cache) and imported from there. Setup works via
|
|
10
|
+
npx without a local install; `path:` packages are supported for local
|
|
11
|
+
development.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 3571ca1: Add package READMEs and npm keywords. The MCP packages now ship
|
|
16
|
+
install instructions for Claude Code, Cursor, and VS Code plus MCP registry
|
|
17
|
+
metadata (mcpName).
|
|
18
|
+
- f7536a6: A `path` entry in `config.bundle.packages` now counts as the package
|
|
19
|
+
pin, so bundling and setup use the local package instead of failing when steps
|
|
20
|
+
still declare conflicting inline versions of it.
|
|
21
|
+
- Updated dependencies [3571ca1]
|
|
22
|
+
- Updated dependencies [63845bb]
|
|
23
|
+
- Updated dependencies [4de76ed]
|
|
24
|
+
- Updated dependencies [79cdcb0]
|
|
25
|
+
- Updated dependencies [756b571]
|
|
26
|
+
- @walkeros/transformer-validate@4.5.0
|
|
27
|
+
- @walkeros/core@4.5.0
|
|
28
|
+
- @walkeros/server-destination-api@4.5.0
|
|
29
|
+
- @walkeros/collector@4.5.0
|
|
30
|
+
- @walkeros/server-core@4.5.0
|
|
31
|
+
|
|
3
32
|
## 4.4.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|