@neocompose/cli 0.6.2 → 0.6.4
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 +15 -0
- package/README.md +3 -0
- package/dist/neo.mjs +8682 -8134
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.4] - 2026-07-20
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Read attached `///` and `/* ... */` developer documentation from schema
|
|
8
|
+
declarations and emit it canonically as `///` comments during pull/reset.
|
|
9
|
+
|
|
10
|
+
## [0.6.3] - 2026-07-20
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Generate readable NeoFlow linked-value aliases from custom values' non-empty
|
|
15
|
+
`Name` string members, using PascalCase for dialogue members and camelCase
|
|
16
|
+
for node-scoped bindings.
|
|
17
|
+
|
|
3
18
|
## [0.6.2] - 2026-07-19
|
|
4
19
|
|
|
5
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -372,6 +372,9 @@ neo status
|
|
|
372
372
|
neo push --dry-run
|
|
373
373
|
```
|
|
374
374
|
|
|
375
|
+
Custom linked values prefer a non-empty string member named `Name`, using
|
|
376
|
+
PascalCase at dialogue scope and camelCase inside nodes.
|
|
377
|
+
|
|
375
378
|
The reset leaves the regenerated names as local changes. IDs are unchanged,
|
|
376
379
|
and nothing is written to the server until `neo push` succeeds.
|
|
377
380
|
|