@gravirei/reis 1.2.0 → 1.2.2
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 +4 -4
- package/lib/commands/help.js +4 -4
- package/lib/install.js +1 -1
- package/package.json +1 -1
package/bin/reis.js
CHANGED
|
@@ -264,14 +264,14 @@ program.action(async () => {
|
|
|
264
264
|
await performInstallation(true, true); // overwrite=true, silent=true
|
|
265
265
|
|
|
266
266
|
console.log(chalk.green(' ✓ REIS reinstalled successfully'));
|
|
267
|
-
console.log(chalk.white(`
|
|
267
|
+
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
268
268
|
} else {
|
|
269
269
|
console.log(chalk.cyan(' Keeping existing installation\n'));
|
|
270
270
|
console.log(chalk.green(' ✓ Using existing documentation'));
|
|
271
271
|
console.log(chalk.green(' ✓ Using existing templates'));
|
|
272
272
|
console.log(chalk.green(' ✓ Using existing subagents'));
|
|
273
273
|
console.log(chalk.green(` ✓ Current VERSION (${packageJson.version})`));
|
|
274
|
-
console.log(chalk.white(`\n
|
|
274
|
+
console.log(chalk.white(`\n Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
} catch (err) {
|
|
@@ -308,7 +308,7 @@ program.action(async () => {
|
|
|
308
308
|
await performInstallation(false, true); // overwrite=false, silent=true
|
|
309
309
|
|
|
310
310
|
console.log(chalk.green(' ✓ REIS installed successfully'));
|
|
311
|
-
console.log(chalk.white(`
|
|
311
|
+
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
312
312
|
|
|
313
313
|
} catch (err) {
|
|
314
314
|
// inquirer failed, auto-install as default
|
|
@@ -319,7 +319,7 @@ program.action(async () => {
|
|
|
319
319
|
await performInstallation(false, true); // overwrite=false, silent=true
|
|
320
320
|
|
|
321
321
|
console.log(chalk.green(' ✓ REIS installed successfully'));
|
|
322
|
-
console.log(chalk.white(`
|
|
322
|
+
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
325
|
});
|
package/lib/commands/help.js
CHANGED
|
@@ -8,7 +8,7 @@ module.exports = function help() {
|
|
|
8
8
|
console.log(chalk.bold.cyan('║') + chalk.bold.white(' REIS - Roadmap Execution & Implementation System ') + chalk.bold.cyan('║'));
|
|
9
9
|
console.log(chalk.bold.cyan('╚════════════════════════════════════════════════════════════════════╝'));
|
|
10
10
|
console.log(chalk.gray(` Version ${version}`));
|
|
11
|
-
console.log(chalk.gray(' Documentation: ~/.rovodev/reis
|
|
11
|
+
console.log(chalk.gray(' Documentation: ~/.rovodev/reis/\n'));
|
|
12
12
|
|
|
13
13
|
console.log(chalk.bold.yellow('Getting Started'));
|
|
14
14
|
console.log(' ' + chalk.cyan('reis new [idea]') + ' Initialize a new REIS project');
|
|
@@ -49,14 +49,14 @@ module.exports = function help() {
|
|
|
49
49
|
console.log(' ' + chalk.cyan('reis docs') + ' Open REIS documentation');
|
|
50
50
|
console.log(' ' + chalk.cyan('reis uninstall') + ' Uninstall REIS');
|
|
51
51
|
|
|
52
|
-
console.log(chalk.bold.yellow('
|
|
52
|
+
console.log(chalk.bold.yellow('\nHelp & Info'));
|
|
53
53
|
console.log(' ' + chalk.cyan('reis help') + ' Show this help message');
|
|
54
54
|
console.log(' ' + chalk.cyan('reis version') + ' Show version and install location');
|
|
55
55
|
|
|
56
|
-
console.log(chalk.gray('
|
|
56
|
+
console.log(chalk.gray('\n Full documentation: ~/.rovodev/reis/README.md'));
|
|
57
57
|
console.log(chalk.gray(' Examples: ~/.rovodev/reis/WORKFLOW_EXAMPLES.md'));
|
|
58
58
|
console.log(chalk.gray(' Quick reference: ~/.rovodev/reis/QUICK_REFERENCE.md'));
|
|
59
|
-
console.log(chalk.gray('
|
|
59
|
+
console.log(chalk.gray('\n Example: ' + chalk.cyan('reis new "build a todo app"') + '\n'));
|
|
60
60
|
|
|
61
61
|
return 0;
|
|
62
62
|
};
|
package/lib/install.js
CHANGED
|
@@ -230,7 +230,7 @@ function copyDirectory(srcDir, destDir, overwrite = false) {
|
|
|
230
230
|
function showSuccessMessage(fileCount, reisDir, templatesDir, subagentsDir) {
|
|
231
231
|
console.log(chalk.green('\n✓ Installation complete\n'));
|
|
232
232
|
console.log(chalk.white(` Installed ${fileCount} files to ~/.rovodev/`));
|
|
233
|
-
console.log(chalk.white(`
|
|
233
|
+
console.log(chalk.white(` Open Atlassian Rovo Dev and run ${chalk.cyan('reis help')} to get started\n`));
|
|
234
234
|
}
|
|
235
235
|
|
|
236
236
|
// Run installation if called directly
|
package/package.json
CHANGED