@neocompose/cli 0.5.2 → 0.5.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 +23 -0
- package/dist/neo.mjs +983 -220
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.4] - 2026-07-19
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Stop reporting phantom member updates when a stored type info spells an
|
|
8
|
+
empty generic-binding map as `typeArguments: {}` or `null` instead of an
|
|
9
|
+
absent key. Convex round trips produce these spellings interchangeably;
|
|
10
|
+
nested type-info binding maps now normalize to absent at every depth
|
|
11
|
+
before semantic comparison.
|
|
12
|
+
|
|
13
|
+
## [0.5.3] - 2026-07-19
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Emit row-backed instance-member defaults (class fields, ordered lists,
|
|
18
|
+
dictionaries) as inline constructed source instead of opaque `Reference(id)`
|
|
19
|
+
calls and raw value-row ID strings. Also resolve sprite/audio `@settings`
|
|
20
|
+
template references to their template symbol, file defaults to
|
|
21
|
+
`Images.X`/`AudioClips.X` registry symbols, and scalar enum default option
|
|
22
|
+
IDs to contextual `.Option` literals; resolve inherited class fields when
|
|
23
|
+
emitting nested value graphs; and stop indenting blank separator lines in
|
|
24
|
+
multi-line value emission.
|
|
25
|
+
|
|
3
26
|
## [0.5.2] - 2026-07-18
|
|
4
27
|
|
|
5
28
|
### Fixed
|