@snapcommit/cli 3.7.0 → 3.7.1
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/commands/github-connect.js +0 -1
- package/dist/repl.js +3 -3
- package/package.json +1 -1
|
@@ -119,7 +119,6 @@ async function githubConnectCommand(tokenArg) {
|
|
|
119
119
|
console.log(chalk_1.default.bold.cyan('\n╔════════════════════════════════════════╗'));
|
|
120
120
|
console.log(chalk_1.default.bold.cyan('║ 🐙 Connect GitHub CLI (Optional) ║'));
|
|
121
121
|
console.log(chalk_1.default.bold.cyan('╚════════════════════════════════════════╝\n'));
|
|
122
|
-
console.log(chalk_1.default.green('✅ Your GitHub account is already connected via snapcommit.dev!\n'));
|
|
123
122
|
console.log(chalk_1.default.gray('This CLI token enables GitHub features in your terminal:\n'));
|
|
124
123
|
console.log(chalk_1.default.white(' • Create pull requests'));
|
|
125
124
|
console.log(chalk_1.default.white(' • Check CI/workflow status'));
|
package/dist/repl.js
CHANGED
|
@@ -95,9 +95,9 @@ async function startREPL() {
|
|
|
95
95
|
console.log(chalk_1.default.yellow.bold('┌─────────────────────────────────────────┐'));
|
|
96
96
|
console.log(chalk_1.default.yellow.bold('│ 🐙 GITHUB FEATURES (OPTIONAL) │'));
|
|
97
97
|
console.log(chalk_1.default.yellow.bold('└─────────────────────────────────────────┘\n'));
|
|
98
|
-
console.log(chalk_1.default.
|
|
99
|
-
console.log(chalk_1.default.gray('
|
|
100
|
-
console.log(chalk_1.default.gray(' This creates a CLI token for
|
|
98
|
+
console.log(chalk_1.default.gray(' Want to use GitHub features? (create PRs, check CI, etc.)\n'));
|
|
99
|
+
console.log(chalk_1.default.gray(' Run: ') + chalk_1.default.cyan('snap github connect'));
|
|
100
|
+
console.log(chalk_1.default.gray(' This creates a CLI token for GitHub API access.\n'));
|
|
101
101
|
}
|
|
102
102
|
console.log(chalk_1.default.gray('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n'));
|
|
103
103
|
console.log(chalk_1.default.bold.yellow('🎯 Try it now! Type what you want to do:\n'));
|