@neocompose/cli 0.40.0 → 0.42.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
|
@@ -83,7 +83,7 @@ wrappers.
|
|
|
83
83
|
The marker near the top of `SKILL.md` must exactly match the package version:
|
|
84
84
|
|
|
85
85
|
```html
|
|
86
|
-
<!-- reviewed-through-cli: 0.
|
|
86
|
+
<!-- reviewed-through-cli: 0.42.0 -->
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
The quoted version above is checked too, so this instruction cannot go stale
|
|
@@ -86,6 +86,15 @@ Use context-aware typed annotations:
|
|
|
86
86
|
- Stateful settings use contextual enum cases, such as
|
|
87
87
|
`@settings(format: .Plain)` and `@settings(selection: .Multi)`.
|
|
88
88
|
- `@relations(...)` only on the source class of a specialized direct relation.
|
|
89
|
+
- `@distribution(kind: .Sparse | .Packed)` only on a value-owning member
|
|
90
|
+
declaration or override. It chooses whether the member's value keeps its
|
|
91
|
+
own row (`.Sparse`) or is stored inside its owning parent's row (`.Packed`).
|
|
92
|
+
Omit it unless the choice must be explicit: on a root declaration absence
|
|
93
|
+
means the automatic distribution for the member's kind and settings, and on
|
|
94
|
+
an override it means inherit. `pull` writes the annotation only where it is
|
|
95
|
+
explicitly stored. A packed subtree shares its parent's document-size limit,
|
|
96
|
+
so a write that would exceed the hard limit fails instead of falling back.
|
|
97
|
+
`.Packed` is rejected on a List whose `listKind` is unordered.
|
|
89
98
|
|
|
90
99
|
Use numeric literals for numeric limits. Keep annotations separate instead of
|
|
91
100
|
inventing a generic metadata bag.
|