agentwheel 0.19.8 → 0.19.9
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/dist/index.js
CHANGED
|
@@ -7369,7 +7369,7 @@ async function expandFile(file, packageRoot, appendEntries, artifactPaths, optio
|
|
|
7369
7369
|
const expanded = await expandContent(raw, packageRoot, [owner], artifactPaths, options);
|
|
7370
7370
|
let content = expanded.content;
|
|
7371
7371
|
const composedFrom = [...expanded.composedFrom];
|
|
7372
|
-
const
|
|
7372
|
+
const appliedComposeIdentities = /* @__PURE__ */ new Set();
|
|
7373
7373
|
for (const external of appendEntries) {
|
|
7374
7374
|
const { entry } = external;
|
|
7375
7375
|
const included = await expandInclude(entry.include, external.packageRoot, external.artifactPaths, {
|
|
@@ -7380,12 +7380,12 @@ async function expandFile(file, packageRoot, appendEntries, artifactPaths, optio
|
|
|
7380
7380
|
chain: [owner]
|
|
7381
7381
|
});
|
|
7382
7382
|
if (!included) continue;
|
|
7383
|
+
const markerMode = entry.markers === false ? "plain" : "markers";
|
|
7384
|
+
const identity = `${markerMode}\0${composedLineageKey(included.composedFrom)}`;
|
|
7383
7385
|
if (external.deduplicate) {
|
|
7384
|
-
|
|
7385
|
-
const identity = `${markerMode}\0${composedLineageKey(included.composedFrom)}`;
|
|
7386
|
-
if (appliedCompositionRules.has(identity)) continue;
|
|
7387
|
-
appliedCompositionRules.add(identity);
|
|
7386
|
+
if (appliedComposeIdentities.has(identity)) continue;
|
|
7388
7387
|
}
|
|
7388
|
+
appliedComposeIdentities.add(identity);
|
|
7389
7389
|
content = `${content.trimEnd()}
|
|
7390
7390
|
|
|
7391
7391
|
${included.rendered}
|
package/openpack.json
CHANGED
package/package.json
CHANGED