@better-update/cli 0.14.2 → 0.14.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.
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import { maxBy, uniqBy } from "es-toolkit";
|
|
|
15
15
|
import { createHash, randomBytes, randomUUID } from "node:crypto";
|
|
16
16
|
import { createReadStream, existsSync, readFileSync, writeFileSync } from "node:fs";
|
|
17
17
|
import os from "node:os";
|
|
18
|
-
import
|
|
18
|
+
import plistMod from "@expo/plist";
|
|
19
19
|
import { ExpoRunFormatter } from "@expo/xcpretty";
|
|
20
20
|
import forge from "node-forge";
|
|
21
21
|
import { Buffer as Buffer$1 } from "node:buffer";
|
|
@@ -28,7 +28,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
28
28
|
|
|
29
29
|
//#endregion
|
|
30
30
|
//#region package.json
|
|
31
|
-
var version = "0.14.
|
|
31
|
+
var version = "0.14.3";
|
|
32
32
|
|
|
33
33
|
//#endregion
|
|
34
34
|
//#region src/lib/interactive-mode.ts
|
|
@@ -3784,6 +3784,7 @@ const acquireKeychain = ({ tempDir, p12Path, p12Password }) => {
|
|
|
3784
3784
|
|
|
3785
3785
|
//#endregion
|
|
3786
3786
|
//#region src/lib/plist.ts
|
|
3787
|
+
const plist = typeof plistMod.parse === "function" ? plistMod : plistMod.default;
|
|
3787
3788
|
/**
|
|
3788
3789
|
* Parse an XML plist string into a typed object.
|
|
3789
3790
|
* Throws on malformed XML — callers should wrap in Effect.try.
|