conare 0.5.7 → 0.5.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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3945,7 +3945,7 @@ async function main() {
|
|
|
3945
3945
|
const write = opts.quiet ? (_s) => {} : (s) => process.stdout.write(s);
|
|
3946
3946
|
const savedApiKey = getSavedApiKey();
|
|
3947
3947
|
const hasTty = !!process.stdin.isTTY && !!process.stdout.isTTY;
|
|
3948
|
-
const shouldRunInteractive = hasTty && !opts.dryRun && !opts.quiet && (opts.interactive || !opts.
|
|
3948
|
+
const shouldRunInteractive = hasTty && !opts.dryRun && !opts.quiet && (opts.interactive || !opts.source && !opts.indexPath && !opts.configOnly && !opts.ingestOnly && !opts.wasmDir);
|
|
3949
3949
|
let selectedTargets = MCP_TARGETS.filter((t) => t.defaultSelected).map((t) => t.id);
|
|
3950
3950
|
let effectiveConfigOnly = opts.configOnly;
|
|
3951
3951
|
let effectiveIngestOnly = opts.ingestOnly;
|