@walkeros/cli 2.1.1 → 2.2.0-next-1772811722420
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 +23 -0
- package/dist/cli.js +1308 -1156
- package/dist/examples/flow-complete.json +47 -5
- package/dist/index.d.ts +2211 -400
- package/dist/index.js +454 -393
- package/dist/index.js.map +1 -1
- package/dist/runtime/main.js +507 -367
- package/examples/flow-complete.json +47 -5
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
+
## 2.2.0-next-1772811722420
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b6c8fa8: Add stores as a first-class component type in Flow.Setup. Stores get
|
|
8
|
+
their own `stores` section in flow config, a `collector.stores` registry, and
|
|
9
|
+
`$store:storeId` env wiring in the bundler. Includes `storeMemoryInit` for
|
|
10
|
+
Flow.Setup compatibility and type widening in cache/file transformers.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ddd6a21: Generated Dockerfiles now include COPY lines for `include` folders,
|
|
15
|
+
enabling fs store support in Docker containers.
|
|
16
|
+
- 67dd7c8: Standardize command pattern: all three commands (validate, simulate,
|
|
17
|
+
push) now route through their programmatic APIs for string resolution and
|
|
18
|
+
orchestration. Extract shared createCollectorLoggerConfig utility. Pass
|
|
19
|
+
missing silent/step options through simulate() API.
|
|
20
|
+
- Updated dependencies [37299a9]
|
|
21
|
+
- Updated dependencies [c83d909]
|
|
22
|
+
- Updated dependencies [b6c8fa8]
|
|
23
|
+
- @walkeros/core@2.2.0-next-1772811722420
|
|
24
|
+
- @walkeros/server-core@2.2.0-next-1772811722420
|
|
25
|
+
|
|
3
26
|
## 2.1.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|