hot-updater 0.36.5 → 0.36.7
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/dist/index.mjs +7 -4
- package/package.json +14 -14
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
import { C as __require, S as __commonJSMin, _ as IosConfigParser, a as createAndInjectFingerprintFiles, b as require_lib$2, c as generateFingerprints, d as getFingerprintDiff, f as showFingerprintDiff, g as warnIfExpoCNG, h as isMissingFingerprintDependencyError, i as saveKeyPair, l as nativeFingerprint, m as require_out, n as getPublicKeyFromPrivate, p as isFingerprintEquals, r as loadPrivateKey, t as generateKeyPair, u as readLocalFingerprint, v as parsePlist, w as __toESM, x as AndroidConfigParser, y as require_base64_js } from "./keyGeneration-CaZJ23gF.mjs";
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
4
|
import fs, { createReadStream, existsSync, realpathSync, statSync } from "fs";
|
|
@@ -27307,9 +27307,9 @@ const initHelp = [
|
|
|
27307
27307
|
"",
|
|
27308
27308
|
"Environment file replay:",
|
|
27309
27309
|
" Re-run init with saved values to reconcile provider infrastructure:",
|
|
27310
|
-
" $ hot-updater init --provider aws --env-file .env.hotupdater",
|
|
27310
|
+
" $ hot-updater init --provider aws --from-env-file .env.hotupdater",
|
|
27311
27311
|
"",
|
|
27312
|
-
" --env-file disables init prompts and reports every missing value.",
|
|
27312
|
+
" --from-env-file disables init prompts and reports every missing value.",
|
|
27313
27313
|
" Interactive init asks once before saving credential inputs for reuse.",
|
|
27314
27314
|
"",
|
|
27315
27315
|
"Provider inputs:",
|
|
@@ -50845,7 +50845,10 @@ program.command("init").description("Initialize Hot Updater").addOption(new Opti
|
|
|
50845
50845
|
"bare",
|
|
50846
50846
|
"rock",
|
|
50847
50847
|
"expo"
|
|
50848
|
-
])).option("--env-file <path>", "load saved init inputs and fail if any are missing").addHelpText("after", initHelp).action((options) => init(
|
|
50848
|
+
])).option("--from-env-file <path>", "load saved init inputs and fail if any are missing").addHelpText("after", initHelp).action(({ fromEnvFile, ...options }) => init({
|
|
50849
|
+
...options,
|
|
50850
|
+
envFile: fromEnvFile
|
|
50851
|
+
}));
|
|
50849
50852
|
program.command("doctor").description("Check the health of Hot Updater").option("--server-base-url <url>", "server base URL used by update checks (doctor appends /version)").option("--json", "output machine-readable doctor result").action(handleDoctor);
|
|
50850
50853
|
const fingerprintCommand = program.command("fingerprint").description("Generate fingerprint");
|
|
50851
50854
|
fingerprintCommand.action(handleFingerprint);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hot-updater",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.36.
|
|
4
|
+
"version": "0.36.7",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.19.0"
|
|
7
7
|
},
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"jiti": "2.6.1",
|
|
52
|
-
"@hot-updater/apple-helper": "0.36.
|
|
53
|
-
"@hot-updater/android-helper": "0.36.
|
|
54
|
-
"@hot-updater/cli-tools": "0.36.
|
|
55
|
-
"@hot-updater/console": "0.36.
|
|
56
|
-
"@hot-updater/core": "0.36.
|
|
57
|
-
"@hot-updater/plugin-core": "0.36.
|
|
58
|
-
"@hot-updater/server": "0.36.
|
|
52
|
+
"@hot-updater/apple-helper": "0.36.7",
|
|
53
|
+
"@hot-updater/android-helper": "0.36.7",
|
|
54
|
+
"@hot-updater/cli-tools": "0.36.7",
|
|
55
|
+
"@hot-updater/console": "0.36.7",
|
|
56
|
+
"@hot-updater/core": "0.36.7",
|
|
57
|
+
"@hot-updater/plugin-core": "0.36.7",
|
|
58
|
+
"@hot-updater/server": "0.36.7"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@bacons/xcode": "1.0.0-alpha.33",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"@typescript/native": "npm:typescript@7.0.2",
|
|
79
79
|
"typescript": "npm:@typescript/typescript6@6.0.2",
|
|
80
80
|
"verkit": "0.3.2",
|
|
81
|
-
"@hot-updater/
|
|
82
|
-
"@hot-updater/
|
|
83
|
-
"@hot-updater/
|
|
84
|
-
"@hot-updater/
|
|
85
|
-
"@hot-updater/
|
|
86
|
-
"@hot-updater/
|
|
81
|
+
"@hot-updater/cloudflare": "0.36.7",
|
|
82
|
+
"@hot-updater/firebase": "0.36.7",
|
|
83
|
+
"@hot-updater/supabase": "0.36.7",
|
|
84
|
+
"@hot-updater/aws": "0.36.7",
|
|
85
|
+
"@hot-updater/server": "0.36.7",
|
|
86
|
+
"@hot-updater/test-utils": "0.36.7"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
89
|
"@expo/fingerprint": "*",
|