@snapcommit/cli 3.8.13 → 3.8.14
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/repl/interpreter.js +5 -0
- package/package.json +1 -1
package/dist/repl/interpreter.js
CHANGED
|
@@ -174,6 +174,11 @@ async function tryQuickCommands(input, context) {
|
|
|
174
174
|
(0, stats_1.statsCommand)();
|
|
175
175
|
return true;
|
|
176
176
|
}
|
|
177
|
+
// GitHub management commands (NOT git operations - these are handled in repl/index.ts)
|
|
178
|
+
if (lower === 'github connect' || lower === 'github status' || lower === 'github disconnect') {
|
|
179
|
+
// Skip - let repl/index.ts handle these
|
|
180
|
+
return false;
|
|
181
|
+
}
|
|
177
182
|
// Push commands
|
|
178
183
|
if (lower === 'push' || lower === 'push it' || lower === 'push that') {
|
|
179
184
|
try {
|