@gravirei/reis 1.1.5 → 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.
- package/bin/reis.js +4 -2
- package/package.json +1 -1
package/bin/reis.js
CHANGED
|
@@ -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