@neocompose/cli 0.7.1 → 0.7.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 +7 -0
- package/dist/neo.mjs +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
- Document the final relation-only world layer-link contract and keep the
|
|
8
8
|
format-4 Hello World corpus free of the retired value-side binding field.
|
|
9
9
|
|
|
10
|
+
## [0.7.2] - 2026-07-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Preserve declaration-local `isReadOnly` on every override when an entire
|
|
15
|
+
inheritance chain converts to read-only in one source push.
|
|
16
|
+
|
|
10
17
|
## [0.7.1] - 2026-07-22
|
|
11
18
|
|
|
12
19
|
### Added
|
package/dist/neo.mjs
CHANGED
|
@@ -22650,6 +22650,7 @@ function memberToDocument(member, baseData3, parentMember) {
|
|
|
22650
22650
|
const normalizedBaseData = normalizeDocumentFields("member", baseData3);
|
|
22651
22651
|
for (const [field, value] of Object.entries(fields)) {
|
|
22652
22652
|
if (MEMBER_IDENTITY_FIELDS.has(field)) continue;
|
|
22653
|
+
if (field === "isReadOnly") continue;
|
|
22653
22654
|
if (Object.prototype.hasOwnProperty.call(normalizedBaseData, field))
|
|
22654
22655
|
continue;
|
|
22655
22656
|
if (!Object.prototype.hasOwnProperty.call(inheritedFields, field)) continue;
|