@neocompose/cli 0.48.2 → 0.49.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/package.json
CHANGED
|
@@ -88,7 +88,7 @@ wrappers.
|
|
|
88
88
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
89
89
|
|
|
90
90
|
```html
|
|
91
|
-
<!-- reviewed-through-cli: 0.
|
|
91
|
+
<!-- reviewed-through-cli: 0.49.0 -->
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -136,6 +136,15 @@ member creates a sparse override with its deterministic projected ID; removing
|
|
|
136
136
|
that member from an existing initializer resets the override and resumes source
|
|
137
137
|
tracking. Require either transition to appear in `neo diff`.
|
|
138
138
|
|
|
139
|
+
Generic arguments specify types, not default values. A required generic member
|
|
140
|
+
must be supplied at construction unless its member declaration or an inherited
|
|
141
|
+
member declaration supplies a default. Missing required members are compile
|
|
142
|
+
errors. Pull preserves incomplete stored objects for repair; add the missing
|
|
143
|
+
initializer or declare the intended member default before testing or pushing.
|
|
144
|
+
An override without a local initializer inherits an available base member
|
|
145
|
+
default, including when its stored `defaultValue` carrier is null. An explicit
|
|
146
|
+
`= null` initializer is a literal nullable default, not an inheritance marker.
|
|
147
|
+
|
|
139
148
|
Editing an initializer updates sparse override rows in place: projected member
|
|
140
149
|
IDs remain stable, and omitted virtual rows are never emitted as authored seed
|
|
141
150
|
records. Spelling a declared default verbatim in a new initializer lowers to
|