@moneysiren/cli 0.1.0-alpha.10 → 0.1.0-alpha.12

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
@@ -75,7 +75,7 @@ Install the generated tarball into a temporary project:
75
75
  mkdir -p /tmp/moneysiren-alpha-review
76
76
  cd /tmp/moneysiren-alpha-review
77
77
  npm init -y
78
- npm install /path/to/moneysiren-cli-0.1.0-alpha.10.tgz
78
+ npm install /path/to/moneysiren-cli-0.1.0-alpha.12.tgz
79
79
  npm exec moneysiren
80
80
  npm exec moneysiren -- --version
81
81
  npm exec moneysiren -- /version
@@ -91,7 +91,7 @@ PowerShell equivalent for the temporary project:
91
91
  New-Item -ItemType Directory -Force -Path $env:TEMP\moneysiren-alpha-review
92
92
  Set-Location $env:TEMP\moneysiren-alpha-review
93
93
  npm init -y
94
- npm install C:\path\to\moneysiren-cli-0.1.0-alpha.10.tgz
94
+ npm install C:\path\to\moneysiren-cli-0.1.0-alpha.12.tgz
95
95
  npm exec moneysiren
96
96
  npm exec moneysiren -- --version
97
97
  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.10";
3
+ export declare const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.12";
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.10";
10
+ export const DEFAULT_RELEASE_TAG = "v0.1.0-alpha.12";
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";
@@ -1,2 +1,2 @@
1
- export declare const CLI_VERSION = "0.1.0-alpha.10";
1
+ export declare const CLI_VERSION = "0.1.0-alpha.12";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export const CLI_VERSION = "0.1.0-alpha.10";
1
+ export const CLI_VERSION = "0.1.0-alpha.12";
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.10";
6
+ const DEFAULT_VERSION = "0.1.0-alpha.12";
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.10",
3
+ "version": "0.1.0-alpha.12",
4
4
  "description": "Local-first cloud/SaaS usage, status, and expected billing CLI for MoneySiren.",
5
5
  "private": false,
6
6
  "license": "MIT",