@moneysiren/cli 0.1.0-alpha.7 → 0.1.0-alpha.8

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.
package/README.md CHANGED
@@ -67,7 +67,7 @@ Install the generated tarball into a temporary project:
67
67
  mkdir -p /tmp/moneysiren-alpha-review
68
68
  cd /tmp/moneysiren-alpha-review
69
69
  npm init -y
70
- npm install /path/to/moneysiren-cli-0.1.0-alpha.7.tgz
70
+ npm install /path/to/moneysiren-cli-0.1.0-alpha.8.tgz
71
71
  npm exec moneysiren
72
72
  npm exec moneysiren -- --version
73
73
  npm exec moneysiren -- /version
@@ -83,7 +83,7 @@ PowerShell equivalent for the temporary project:
83
83
  New-Item -ItemType Directory -Force -Path $env:TEMP\moneysiren-alpha-review
84
84
  Set-Location $env:TEMP\moneysiren-alpha-review
85
85
  npm init -y
86
- npm install C:\path\to\moneysiren-cli-0.1.0-alpha.7.tgz
86
+ npm install C:\path\to\moneysiren-cli-0.1.0-alpha.8.tgz
87
87
  npm exec moneysiren
88
88
  npm exec moneysiren -- --version
89
89
  npm exec moneysiren -- modes
@@ -1,6 +1,6 @@
1
1
  import type { InstallSurface } from "./install-profile.js";
2
2
  export declare const DEFAULT_RELEASE_REPOSITORY = "ztwz11/moneysiren";
3
- export declare const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.7";
3
+ export declare const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.8";
4
4
  export interface ReleaseInstallOptions {
5
5
  env?: Record<string, string | undefined>;
6
6
  fetchImpl: typeof fetch;
@@ -7,7 +7,7 @@ import { promisify } from "node:util";
7
7
  const execFileAsync = promisify(execFile);
8
8
  export const DEFAULT_RELEASE_REPOSITORY = "ztwz11/moneysiren";
9
9
  // Keep the source-free installer pinned to the latest published desktop/web release tag.
10
- export const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.7";
10
+ export const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.8";
11
11
  const RELEASE_REPOSITORY_ENV_KEY = "MONEYSIREN_RELEASE_REPOSITORY";
12
12
  const RELEASE_TAG_ENV_KEY = "MONEYSIREN_RELEASE_TAG";
13
13
  const RELEASE_INSTALL_DIR_ENV_KEY = "MONEYSIREN_RELEASE_INSTALL_DIR";
@@ -64,7 +64,7 @@ export async function openUrlInBrowser(url) {
64
64
  throw new Error("Refusing to open a non-loopback runtime URL.");
65
65
  }
66
66
  const child = process.platform === "win32"
67
- ? spawn("cmd", ["/c", "start", "", parsedUrl.toString()], {
67
+ ? spawn("rundll32.exe", ["url.dll,FileProtocolHandler", parsedUrl.toString()], {
68
68
  detached: true,
69
69
  stdio: "ignore",
70
70
  windowsHide: true,
@@ -1,2 +1,2 @@
1
- export declare const CLI_VERSION = "0.1.0-alpha.7";
1
+ export declare const CLI_VERSION = "0.1.0-alpha.8";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export const CLI_VERSION = "0.1.0-alpha.7";
1
+ export const CLI_VERSION = "0.1.0-alpha.8";
2
2
  //# sourceMappingURL=version.js.map
@@ -3,7 +3,7 @@ import { parseNotificationPreferences, readNotificationDigest, readNotificationP
3
3
  import { assertLoopbackHost, isLoopbackHost, removeRuntimeLock, writeRuntimeLock, } from "../../runtime/src/index.js";
4
4
  const DEFAULT_HOST = "127.0.0.1";
5
5
  const DEFAULT_PORT = 47831;
6
- const DEFAULT_VERSION = "0.1.0-alpha.7";
6
+ const DEFAULT_VERSION = "0.1.0-alpha.8";
7
7
  export async function startLocalApiServer(options = {}) {
8
8
  const host = options.host ?? DEFAULT_HOST;
9
9
  const requestedPort = options.port ?? DEFAULT_PORT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moneysiren/cli",
3
- "version": "0.1.0-alpha.7",
3
+ "version": "0.1.0-alpha.8",
4
4
  "description": "Local-first cloud/SaaS usage, status, and expected billing CLI for MoneySiren.",
5
5
  "private": false,
6
6
  "license": "MIT",