agentwheel 0.20.7 → 0.20.8
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
|
@@ -7227,7 +7227,8 @@ async function renderGraphForTarget(graph, targetContext = {}) {
|
|
|
7227
7227
|
const rawNode = staged.rawNode;
|
|
7228
7228
|
const runtimeSelectedSet = new Set(normalizeArtifactSelectors(rawNode.node.selected) ?? []);
|
|
7229
7229
|
const runtimeArtifacts = targetContext.adapter ? filterArtifactsByRuntime2(staged.artifacts, targetContext.adapter.name, runtimeSelectedSet) : staged.artifacts;
|
|
7230
|
-
const
|
|
7230
|
+
const compositionArtifacts = targetContext.noDeps ? filterArtifactsBySelection(runtimeArtifacts, rawNode.node.selected) : runtimeArtifacts;
|
|
7231
|
+
const expandedArtifacts = await expandMarkdownIncludes(compositionArtifacts, staged.root, {
|
|
7231
7232
|
nodeId: rawNode.node.id,
|
|
7232
7233
|
originNodeId: rawNode.node.id,
|
|
7233
7234
|
additionalComposeEntries: (artifact) => matchingCompositionEntries(
|
|
@@ -8093,6 +8094,7 @@ async function createGraphSourcePlan(options) {
|
|
|
8093
8094
|
adapter: options.adapter,
|
|
8094
8095
|
installationType,
|
|
8095
8096
|
targetFingerprint,
|
|
8097
|
+
noDeps: options.noDeps,
|
|
8096
8098
|
warn
|
|
8097
8099
|
});
|
|
8098
8100
|
const desiredArtifacts = filterArtifactsByAdapterTargets(
|
package/openpack.json
CHANGED
package/package.json
CHANGED