artisense 0.1.2 → 0.1.3

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/dist/index.js +1 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -127,6 +127,7 @@ async function loginCommand() {
127
127
  console.log("Authenticated successfully!");
128
128
  console.log(`Credentials saved to ~/.config/artisense/credentials.json
129
129
  `);
130
+ process.exit(0);
130
131
  }
131
132
  function openBrowser(url) {
132
133
  const cmd = process.platform === "darwin" ? `open "${url}"` : process.platform === "win32" ? `start "${url}"` : `xdg-open "${url}"`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artisense",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI for Artisense — manage documents from your terminal or AI agent",
5
5
  "license": "MIT",
6
6
  "bin": {