@gravirei/reis 1.0.10 → 1.0.12
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/bin/reis.js +3 -5
- package/package.json +1 -1
package/bin/reis.js
CHANGED
|
@@ -287,11 +287,9 @@ program.action(async () => {
|
|
|
287
287
|
}
|
|
288
288
|
|
|
289
289
|
// Show completion message
|
|
290
|
-
console.log(chalk.bold.green('
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
const helpCmd = require('../lib/commands/help');
|
|
294
|
-
helpCmd();
|
|
290
|
+
console.log(chalk.bold.green(' 🎉 Congratulations! ') + chalk.white('REIS is now in your system.'));
|
|
291
|
+
console.log(chalk.white(' Open Atlassian Rovo Dev and try: ') + chalk.cyan('use reis_planner') + chalk.white(' or ') + chalk.cyan('use reis_executor'));
|
|
292
|
+
console.log(chalk.white('\n For help, run: ') + chalk.cyan('npx @gravirei/reis help\n'));
|
|
295
293
|
|
|
296
294
|
} catch (err) {
|
|
297
295
|
// If inquirer fails (non-interactive), just show help
|
package/package.json
CHANGED