@walkeros/cli 2.1.1 → 2.2.0-next-1773136823705
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 +49 -0
- package/README.md +2 -2
- package/dist/cli.js +13530 -12055
- package/dist/examples/README.md +1 -1
- package/dist/examples/flow-complete.json +47 -5
- package/dist/index.d.ts +2439 -649
- package/dist/index.js +1938 -1199
- package/dist/index.js.map +1 -1
- package/examples/README.md +1 -1
- package/examples/flow-complete.json +47 -5
- package/package.json +8 -5
- package/dist/runtime/main.js +0 -17344
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 2.2.0-next-1773136823705
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d11f574: Rename Flow.Setup to Flow.Config and Flow.Config to Flow.Settings for
|
|
8
|
+
consistent Config/Settings naming convention at every level. Breaking change:
|
|
9
|
+
all type names, function names, schema names, and API URL paths (/configs →
|
|
10
|
+
/settings) updated.
|
|
11
|
+
- d5af3cf: Unified CLI and Docker runner into single `walkeros run` code path
|
|
12
|
+
with built-in health server, heartbeat, polling, and secrets support. Added
|
|
13
|
+
`--flow-id` and `--project` flags. Removed legacy `--deploy`, `--url`,
|
|
14
|
+
`--health-endpoint`, `--heartbeat-interval`, and `-h/--host` flags.
|
|
15
|
+
- b6c8fa8: Add stores as a first-class component type in Flow.Config. Stores get
|
|
16
|
+
their own `stores` section in flow settings, a `collector.stores` registry,
|
|
17
|
+
and `$store:storeId` env wiring in the bundler. Includes `storeMemoryInit` for
|
|
18
|
+
Flow.Config compatibility and type widening in cache/file transformers.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 2b259b6: Fix deterministic package version resolution in bundler.
|
|
23
|
+
- Two-phase resolve-then-install prevents version overwrites
|
|
24
|
+
- peerDependencies resolved at lowest priority (not equal to deps)
|
|
25
|
+
- Per-build temp directories prevent cross-build interference
|
|
26
|
+
- Optional peerDeps (peerDependenciesMeta) correctly skipped
|
|
27
|
+
- Prerelease versions handled with includePrerelease flag
|
|
28
|
+
- Package names validated against npm naming rules
|
|
29
|
+
|
|
30
|
+
- ddd6a21: Generated Dockerfiles now include COPY lines for `include` folders,
|
|
31
|
+
enabling fs store support in Docker containers.
|
|
32
|
+
- 67dd7c8: Standardize command pattern: all three commands (validate, simulate,
|
|
33
|
+
push) now route through their programmatic APIs for string resolution and
|
|
34
|
+
orchestration. Extract shared createCollectorLoggerConfig utility. Pass
|
|
35
|
+
missing silent/step options through simulate() API.
|
|
36
|
+
- 499e27a: Add sideEffects declarations to all packages for bundler tree-shaking
|
|
37
|
+
support.
|
|
38
|
+
- 55ce33e: Fix $store: forward reference bug in bundler codegen — stores are now
|
|
39
|
+
hoisted into a separate variable declaration before the config object,
|
|
40
|
+
ensuring store references resolve correctly at runtime
|
|
41
|
+
- Updated dependencies [2b259b6]
|
|
42
|
+
- Updated dependencies [37299a9]
|
|
43
|
+
- Updated dependencies [499e27a]
|
|
44
|
+
- Updated dependencies [d11f574]
|
|
45
|
+
- Updated dependencies [d11f574]
|
|
46
|
+
- Updated dependencies [499e27a]
|
|
47
|
+
- Updated dependencies [c83d909]
|
|
48
|
+
- Updated dependencies [b6c8fa8]
|
|
49
|
+
- @walkeros/core@2.2.0-next-1773136823705
|
|
50
|
+
- @walkeros/server-core@2.2.0-next-1773136823705
|
|
51
|
+
|
|
3
52
|
## 2.1.1
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -231,7 +231,7 @@ Validate flow configurations, events, mappings, or contracts.
|
|
|
231
231
|
walkeros validate <config-file> [options]
|
|
232
232
|
```
|
|
233
233
|
|
|
234
|
-
By default, validates a Flow.
|
|
234
|
+
By default, validates a Flow.Config file — checking schema, references, and
|
|
235
235
|
cross-step example compatibility.
|
|
236
236
|
|
|
237
237
|
**Options:**
|
|
@@ -339,7 +339,7 @@ walkeros bundle flow.json --no-cache
|
|
|
339
339
|
|
|
340
340
|
## Flow Configuration
|
|
341
341
|
|
|
342
|
-
Flow configs use the `Flow.
|
|
342
|
+
Flow configs use the `Flow.Config` format with `version` and `flows`:
|
|
343
343
|
|
|
344
344
|
```json
|
|
345
345
|
{
|