@neocompose/cli 0.20.0 → 0.21.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 +21 -0
- package/dist/neo.mjs +38169 -35378
- package/package.json +1 -1
- package/skills/neocompose-cli/SKILL.md +1 -1
- package/skills/neocompose-cli/references/cli-development.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.21.0] - 2026-08-02
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Constructor-backed instance initializers materialize locally during source
|
|
8
|
+
reconciliation, and `neo push --dry-run` compares that pending-id graph with
|
|
9
|
+
the server-owned materialization before any project data is sent.
|
|
10
|
+
- A canonical pull reconstructs required-constructor calls from their stored
|
|
11
|
+
evaluated arguments and adds a settle block only for fields that have
|
|
12
|
+
diverged since creation. The authoring checkout keeps the original spelling
|
|
13
|
+
and formatting after a successful push.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Constructor-built root, static, ordered-list, and unordered-list instances
|
|
18
|
+
now round-trip as ordinary editable value rows instead of persisting
|
|
19
|
+
initializer code that the web and Unity runtime cannot evaluate.
|
|
20
|
+
- Re-authoring a stamped construction with the same evaluated arguments is a
|
|
21
|
+
no-op; changing its creation arguments reports an edit-or-recreate conflict
|
|
22
|
+
instead of silently rebuilding and overwriting the instance.
|
|
23
|
+
|
|
3
24
|
## [0.20.0] - 2026-08-02
|
|
4
25
|
|
|
5
26
|
### Added
|