@walkeros/cli 4.1.0-next-1778668930820 → 4.1.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 +33 -5
- package/README.md +21 -712
- package/dist/cli.js +2263 -1811
- package/dist/examples/README.md +6 -8
- package/dist/examples/flow-complete.json +1 -19
- package/dist/examples/flow-complete.md +10 -13
- package/dist/examples/index.js +1 -19
- package/dist/examples/index.js.map +1 -1
- package/dist/examples/server-collect.json +2 -2
- package/dist/index.js +191 -115
- package/dist/index.js.map +1 -1
- package/examples/README.md +6 -8
- package/examples/flow-complete.json +1 -19
- package/examples/flow-complete.md +10 -13
- package/examples/server-collect.json +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
# @walkeros/cli
|
|
2
2
|
|
|
3
|
-
## 4.1.0
|
|
3
|
+
## 4.1.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
+
- b276173: **Breaking:** `code: "<exportName>"` is no longer accepted on any
|
|
8
|
+
step. Replace with `import: "<exportName>"` alongside `package`.
|
|
9
|
+
|
|
10
|
+
**New:** Every step (source, transformer, destination, store) accepts
|
|
11
|
+
`import?: string`. With `package`, it selects a named export. `package` alone
|
|
12
|
+
still loads the default export. Inline code stays
|
|
13
|
+
`code: { push, type?, init? }`. Empty steps are valid no-ops. `flow_validate`
|
|
14
|
+
and the CLI bundler raise `OBSOLETE_CODE_STRING` on the legacy shape with a
|
|
15
|
+
precise rename hint.
|
|
16
|
+
|
|
7
17
|
- dd9f5ad: Pass-through transformer steps + closed-schema validation.
|
|
8
18
|
|
|
9
19
|
**Validation:** `validateTransformerEntry` in `@walkeros/core` is now the
|
|
@@ -85,15 +95,33 @@
|
|
|
85
95
|
|
|
86
96
|
`$schema: "v4"` is preserved. No version bump.
|
|
87
97
|
|
|
98
|
+
- adeebea: Route grammar: rename `case` to `one` (first-match dispatch) and add
|
|
99
|
+
`many` (all-match parallel fan-out, pre-collector only). `many` terminates the
|
|
100
|
+
main chain and is rejected at post-collector positions (`destination.before`,
|
|
101
|
+
`destination.next`); use multiple destinations for post-collector fan-out.
|
|
102
|
+
`RouteCaseConfig` is renamed to `RouteOneConfig`; no aliases.
|
|
103
|
+
- Updated dependencies [e155ff8]
|
|
104
|
+
- Updated dependencies [e800974]
|
|
105
|
+
- Updated dependencies [e155ff8]
|
|
88
106
|
- Updated dependencies [1a8f2d7]
|
|
89
107
|
- Updated dependencies [1a8f2d7]
|
|
108
|
+
- Updated dependencies [b276173]
|
|
90
109
|
- Updated dependencies [dd9f5ad]
|
|
110
|
+
- Updated dependencies [c60ef35]
|
|
111
|
+
- Updated dependencies [adeebea]
|
|
112
|
+
- Updated dependencies [13aaeaa]
|
|
113
|
+
- Updated dependencies [e800974]
|
|
114
|
+
- Updated dependencies [adeebea]
|
|
91
115
|
- Updated dependencies [6cdc362]
|
|
116
|
+
- Updated dependencies [e800974]
|
|
117
|
+
- Updated dependencies [e800974]
|
|
118
|
+
- Updated dependencies [058f7ed]
|
|
92
119
|
- Updated dependencies [28a8ac2]
|
|
93
|
-
|
|
94
|
-
- @walkeros/
|
|
95
|
-
- @walkeros/
|
|
96
|
-
- @walkeros/server-
|
|
120
|
+
- Updated dependencies [fd6076e]
|
|
121
|
+
- @walkeros/core@4.1.0
|
|
122
|
+
- @walkeros/collector@4.1.0
|
|
123
|
+
- @walkeros/server-core@4.1.0
|
|
124
|
+
- @walkeros/server-destination-api@4.1.0
|
|
97
125
|
|
|
98
126
|
## 4.0.2
|
|
99
127
|
|