@h1veframework/cli 0.10.0 → 0.12.0

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 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1281,7 +1281,7 @@ var SUCCESS_HTML = `<!doctype html><html><head><meta charset="utf-8"><title>H1VE
1281
1281
  <p style="color:#9aa0aa;margin-top:12px">\u2713 Autorizado. Pode fechar esta aba e voltar ao terminal.</p></div></body></html>`;
1282
1282
  function browserOpenCommand(platform, url) {
1283
1283
  if (platform === "darwin") return { cmd: "open", args: [url] };
1284
- if (platform === "win32") return { cmd: "explorer.exe", args: [url] };
1284
+ if (platform === "win32") return { cmd: "rundll32.exe", args: ["url.dll,FileProtocolHandler", url] };
1285
1285
  return { cmd: "xdg-open", args: [url] };
1286
1286
  }
1287
1287
  function openBrowser(url) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h1veframework/cli",
3
- "version": "0.10.0",
3
+ "version": "0.12.0",
4
4
  "description": "The CLI for H1VE — the governance & memory layer for teams building with AI. Drive your feature flow (start, status, move, spec, done) from the terminal. Works with Claude Code, Cursor and Copilot.",
5
5
  "license": "MIT",
6
6
  "type": "module",