@mangomagic/cli 0.1.10 → 0.1.11
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/package.json +1 -1
- package/src/index.mjs +2 -1
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -140,7 +140,8 @@ async function runToolCommand(argv) {
|
|
|
140
140
|
|
|
141
141
|
function shouldStartChat(argv) {
|
|
142
142
|
if (argv.includes("--home") || argv.includes("--no-chat")) return false;
|
|
143
|
-
|
|
143
|
+
if (process.env.MANGOMAGIC_CLI_NO_CHAT === "1" || process.env.CI === "true") return false;
|
|
144
|
+
return true;
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
function splashMode() {
|