@gravirei/reis 1.1.4 → 1.1.6

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.
Files changed (2) hide show
  1. package/bin/reis.js +6 -4
  2. package/package.json +1 -1
package/bin/reis.js CHANGED
@@ -277,8 +277,8 @@ program.action(async () => {
277
277
  console.log(chalk.green(` ✓ Wrote VERSION (${packageJson.version})`));
278
278
  console.log(chalk.green(' ✓ Configured REIS\n'));
279
279
 
280
- const install = require('../lib/install.js');
281
- // The install module runs automatically
280
+ const { install } = require('../lib/install.js');
281
+ await install();
282
282
  } else {
283
283
  console.log(chalk.cyan(' Keeping existing installation\n'));
284
284
  console.log(chalk.green(' ✓ Using existing documentation'));
@@ -341,7 +341,8 @@ program.action(async () => {
341
341
  console.log(chalk.green(' ✓ Configured REIS\n'));
342
342
 
343
343
  // Actually run the install
344
- const install = require('../lib/install.js');
344
+ const { install } = require('../lib/install.js');
345
+ await install();
345
346
 
346
347
  // Show completion message
347
348
  console.log(chalk.bold.green(' 🎉 Congratulations! ') + chalk.white('REIS is now in your system.'));
@@ -361,7 +362,8 @@ program.action(async () => {
361
362
  console.log(chalk.green(' ✓ Configured REIS\n'));
362
363
 
363
364
  // Actually run the install
364
- const install = require('../lib/install.js');
365
+ const { install } = require('../lib/install.js');
366
+ await install();
365
367
 
366
368
  // Show completion message
367
369
  console.log(chalk.bold.green(' 🎉 Congratulations! ') + chalk.white('REIS is now in your system.'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "Roadmap Execution & Implementation System - Systematic development with parallel subagent execution for Atlassian Rovo Dev",
5
5
  "main": "lib/index.js",
6
6
  "bin": {