@walkeros/cli 3.3.1 → 3.4.0-next-1776749829492
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 +25 -0
- package/dist/cli.js +427 -273
- package/dist/examples/flow-complete.json +15 -7
- package/dist/examples/flow-complete.md +76 -57
- package/dist/index.d.ts +72 -5
- package/dist/index.js +222 -61
- package/dist/index.js.map +1 -1
- package/examples/flow-complete.json +15 -7
- package/examples/flow-complete.md +76 -57
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 3.4.0-next-1776749829492
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a0f8f2: Add `target` option to `bundle()`:
|
|
8
|
+
`cdn | cdn-skeleton | runner | simulate | push`. Replaces
|
|
9
|
+
`buildOverrides.skipWrapper` (deprecated) to stop dev schemas leaking into
|
|
10
|
+
production CDN bundles. Stage 2 entry generators gain `platform` option and
|
|
11
|
+
inject `env.window`/`env.document` for browser targets, fixing
|
|
12
|
+
`window.elbLayer` in deployed walker.js.
|
|
13
|
+
- 9f97bdd: Clients now send `User-Agent`, `X-WalkerOS-Client`, and
|
|
14
|
+
`X-WalkerOS-Client-Version` on every request to the walkerOS app. When the app
|
|
15
|
+
returns `426 Upgrade Required`, the CLI prints the required version + upgrade
|
|
16
|
+
instruction and exits with code 2; the MCP surfaces the same info in tool
|
|
17
|
+
errors. Set `WALKEROS_CLIENT_TYPE=runner` to have the CLI binary identify as a
|
|
18
|
+
long-lived runner instead of an interactive CLI (used by the runtime image so
|
|
19
|
+
runners are distinguishable from interactive sessions).
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [74940cc]
|
|
24
|
+
- Updated dependencies [525f5d9]
|
|
25
|
+
- @walkeros/core@3.4.0-next-1776749829492
|
|
26
|
+
- @walkeros/server-core@3.4.0-next-1776749829492
|
|
27
|
+
|
|
3
28
|
## 3.3.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|