@neocompose/cli 0.24.0 → 0.24.2
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 +35 -0
- package/dist/neo.mjs +479 -176
- package/package.json +8 -2
- package/skills/neocompose-cli/SKILL.md +6 -2
- package/skills/neocompose-cli/references/animation-and-world-authoring.md +48 -18
- package/skills/neocompose-cli/references/cli-development.md +5 -3
- package/skills/neocompose-cli/references/values-identities-and-references.md +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.24.2] - 2026-08-07
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Compile selectors on newly authored nested track rows with the lexical class
|
|
8
|
+
that declares the clip, including idless rows, explicit UUID rows, and
|
|
9
|
+
default rows copied into an instance graph.
|
|
10
|
+
- Preserve same-pass default-row provenance and initializer-backed rows while
|
|
11
|
+
assembling authored seeds, instead of losing the source owner or replacing
|
|
12
|
+
an initializer with an undefined literal.
|
|
13
|
+
- Accept compiled selector delegates in trusted static-value graph validation,
|
|
14
|
+
so server preparation agrees with P60 track construction.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Clarify in the bundled CLI skill that `this` in a track selector refers to
|
|
19
|
+
the class declaring the clip, not the nested track or a receiving instance.
|
|
20
|
+
|
|
21
|
+
## [0.24.1] - 2026-08-07
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Allow new idless rows and explicitly identified UUID rows inside existing
|
|
26
|
+
row-backed member-default lists. Changed ancestors and pending children now
|
|
27
|
+
reach prospective animation validation and trusted server materialization,
|
|
28
|
+
which preserves existing rows and creates only genuinely new children.
|
|
29
|
+
- Keep project constructor declarations in the `neo test` compiler context so
|
|
30
|
+
named calls to required constructors compile instead of falling back to a
|
|
31
|
+
schema-derived constructor.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- Update the bundled CLI skill for P60 selector targeting, project-owned stable
|
|
36
|
+
selector identity, and frugal `@id` authoring for new declarations and rows.
|
|
37
|
+
|
|
3
38
|
## [0.24.0] - 2026-08-06
|
|
4
39
|
|
|
5
40
|
### Added
|