@neocompose/cli 0.23.0 → 0.23.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/package.json
CHANGED
|
@@ -78,7 +78,7 @@ wrappers.
|
|
|
78
78
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
79
79
|
|
|
80
80
|
```html
|
|
81
|
-
<!-- reviewed-through-cli: 0.23.
|
|
81
|
+
<!-- reviewed-through-cli: 0.23.2 -->
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -118,6 +118,15 @@ Removing an explicitly materialized field from an existing initializer requests
|
|
|
118
118
|
a reset through the current default; require that change to appear in
|
|
119
119
|
`neo diff`.
|
|
120
120
|
|
|
121
|
+
Editing an initializer on an already-materialized instance updates the stored
|
|
122
|
+
rows in place: the plan carries leaf updates with stable sub-row ids, never a
|
|
123
|
+
delete-and-recreate, and never strips the instance back to an unconstructed
|
|
124
|
+
value. A construction the stored rows cannot be reprojected onto — one that
|
|
125
|
+
changes durable constructor arguments, swaps the class, or predates a new
|
|
126
|
+
constructor parameter — fails with `construction-arguments-conflict` instead of
|
|
127
|
+
lowering. Edit the instance's members, or delete and recreate the value with the
|
|
128
|
+
new construction.
|
|
129
|
+
|
|
121
130
|
Write main-locale text directly in localizable string initializers. Pull/lower
|
|
122
131
|
preserves other locales, comments, statuses, archive state, and unrelated
|
|
123
132
|
localized-text links. Do not author localized-text IDs in place of prose.
|