@alessandroraffa/tangyr 1.0.2 → 1.0.3
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 +17 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26232,7 +26232,11 @@ function resolveInstructionsSource(kitRoot, config) {
|
|
|
26232
26232
|
"source.instructions in tangyr.config.yaml"
|
|
26233
26233
|
);
|
|
26234
26234
|
}
|
|
26235
|
-
return {
|
|
26235
|
+
return {
|
|
26236
|
+
file,
|
|
26237
|
+
label: normalizeLabel(kitRoot, file),
|
|
26238
|
+
origin: "config-override"
|
|
26239
|
+
};
|
|
26236
26240
|
}
|
|
26237
26241
|
const declared = resolveKitEntrypointName(kitRoot);
|
|
26238
26242
|
if (declared !== void 0) {
|
|
@@ -26244,7 +26248,11 @@ function resolveInstructionsSource(kitRoot, config) {
|
|
|
26244
26248
|
"entrypoint in tangyr-kit.yaml"
|
|
26245
26249
|
);
|
|
26246
26250
|
}
|
|
26247
|
-
return {
|
|
26251
|
+
return {
|
|
26252
|
+
file,
|
|
26253
|
+
label: normalizeLabel(kitRoot, file),
|
|
26254
|
+
origin: "manifest-entrypoint"
|
|
26255
|
+
};
|
|
26248
26256
|
}
|
|
26249
26257
|
for (const name of [DEFAULT_ENTRYPOINT, PORTABLE_INSTRUCTIONS_NAME]) {
|
|
26250
26258
|
const file = path33.resolve(kitRoot, name);
|
|
@@ -31557,7 +31565,12 @@ function installClaudeCodeAdapterSlots(args) {
|
|
|
31557
31565
|
if (outcome.status !== "success" && outcome.status !== "skipped-current") {
|
|
31558
31566
|
continue;
|
|
31559
31567
|
}
|
|
31560
|
-
const key = claudeCodeOutcomeToManifestKey(
|
|
31568
|
+
const key = claudeCodeOutcomeToManifestKey(
|
|
31569
|
+
profile,
|
|
31570
|
+
outcome,
|
|
31571
|
+
scope,
|
|
31572
|
+
projectRoot
|
|
31573
|
+
);
|
|
31561
31574
|
if (!key) {
|
|
31562
31575
|
continue;
|
|
31563
31576
|
}
|
|
@@ -34137,10 +34150,7 @@ async function runSyncCommand(options, logger) {
|
|
|
34137
34150
|
}
|
|
34138
34151
|
options.kitPath = kitPathOverride;
|
|
34139
34152
|
options.kit = kitName;
|
|
34140
|
-
const { config, configDir, configSource, sourceRoot, kitInfo } = resolveRuntime(
|
|
34141
|
-
options,
|
|
34142
|
-
import.meta.url
|
|
34143
|
-
);
|
|
34153
|
+
const { config, configDir, configSource, sourceRoot, kitInfo } = resolveRuntime(options, import.meta.url);
|
|
34144
34154
|
const syncOptions = toSyncOptions(options, config, configDir, configSource);
|
|
34145
34155
|
const targets = activeTargets(config, options.target);
|
|
34146
34156
|
const results = [];
|