@gravirei/reis 1.0.15 → 1.0.16

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 +3 -2
  2. package/package.json +1 -1
package/bin/reis.js CHANGED
@@ -228,8 +228,9 @@ program
228
228
  program
229
229
  .command('uninstall')
230
230
  .description('Uninstall REIS')
231
- .action(() => {
232
- console.log('Command coming soon in Phase 5-8');
231
+ .action(async () => {
232
+ const uninstallCmd = require('../lib/commands/uninstall');
233
+ await uninstallCmd({});
233
234
  });
234
235
 
235
236
  // Default action (no command)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
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": {