@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neocompose/cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Neo Compose native project-source CLI with bidirectional sync.",
5
5
  "license": "MIT",
6
6
  "type": "module",