nova-terminal-assistant 0.2.4 → 0.2.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.
@@ -1692,11 +1692,9 @@ export class NovaApp {
1692
1692
  });
1693
1693
  }
1694
1694
  }
1695
- // Entry point
1696
- if (import.meta.url === `file://${process.argv[1].replace(/\\/g, '/')}`) {
1697
- const app = new NovaApp();
1698
- app.run().catch((err) => {
1699
- console.error('Fatal error:', err);
1700
- process.exit(1);
1701
- });
1702
- }
1695
+ // Entry point - always run
1696
+ const app = new NovaApp();
1697
+ app.run().catch((err) => {
1698
+ console.error('Fatal error:', err);
1699
+ process.exit(1);
1700
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nova-terminal-assistant",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Nova - AI-powered terminal assistant with multi-model support",
5
5
  "type": "module",
6
6
  "main": "dist/startup/NovaApp.js",