@neocompose/cli 0.7.4 → 0.7.5
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 +6 -0
- package/dist/neo.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@
|
|
|
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.5] - 2026-07-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Download bytes when pull discovers a project file newly added on the server.
|
|
15
|
+
|
|
10
16
|
## [0.7.4] - 2026-07-22
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/dist/neo.mjs
CHANGED
|
@@ -47847,7 +47847,7 @@ async function pullProjectBinariesV4(args) {
|
|
|
47847
47847
|
const key = `project-file:${record3.recordId}`;
|
|
47848
47848
|
const previous = args.previousRecords[key];
|
|
47849
47849
|
const localStatus = localById.get(record3.recordId);
|
|
47850
|
-
const declarationPresent = args.destructive === true || args.localBinaries === void 0 || localStatus !== void 0;
|
|
47850
|
+
const declarationPresent = args.destructive === true || args.localBinaries === void 0 || previous === void 0 || localStatus !== void 0;
|
|
47851
47851
|
const path = localStatus?.path ?? previous?.projectBinary?.path ?? canonicalProjectBinaryPathV4(record3.data);
|
|
47852
47852
|
const absolute = join7(args.workspace.root, path);
|
|
47853
47853
|
const localDigest = existsSync6(absolute) ? sha256File(absolute) : null;
|