@gravirei/reis 1.1.3 → 1.1.5
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 +2 -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
|
-
|
|
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'));
|
package/package.json
CHANGED