issy 0.1.6 → 0.1.7

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/issy +2 -1
  2. package/package.json +3 -3
package/bin/issy CHANGED
@@ -68,7 +68,8 @@ if (cliCommands.has(args[0] || "")) {
68
68
  const here = resolve(fileURLToPath(import.meta.url), "..");
69
69
  const entry = resolve(here, "..", "dist", "cli.js");
70
70
  process.argv = [process.argv[0], process.argv[1], ...args];
71
- await import(entry);
71
+ const cli = await import(entry);
72
+ await cli.ready; // Wait for main() to complete before exiting
72
73
  process.exit(0);
73
74
  }
74
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issy",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "AI-native issue tracking. Markdown files in .issues/, managed by your coding assistant.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  "lint": "biome check src bin"
35
35
  },
36
36
  "dependencies": {
37
- "@miketromba/issy-app": "^0.1.6",
38
- "@miketromba/issy-core": "^0.1.6"
37
+ "@miketromba/issy-app": "^0.1.7",
38
+ "@miketromba/issy-core": "^0.1.7"
39
39
  }
40
40
  }