hot-updater 0.19.7 → 0.19.9
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/config.cjs +2 -1
- package/dist/config.d.cts +3 -1
- package/dist/config.d.ts +3 -1
- package/dist/config.js +2 -1
- package/dist/{fingerprint-BlZWmtlc.cjs → fingerprint-BLWMqaEq.cjs} +189 -147
- package/dist/{fingerprint-BcVy8FPD.js → fingerprint-CHhBVEC9.js} +113 -82
- package/dist/index.cjs +34304 -34200
- package/dist/index.js +34219 -34115
- package/dist/{picocolors-DR-zskCv.js → picocolors-OFVOrezl.js} +29 -2
- package/dist/{picocolors--H0eYra-.cjs → picocolors-nLcU57DT.cjs} +39 -2
- package/dist/plugins/babel.cjs +4 -5
- package/dist/plugins/babel.js +1 -2
- package/package.json +8 -8
- package/dist/chunk-BLXvPPr8.js +0 -30
- package/dist/chunk-DWy1uDak.cjs +0 -39
package/dist/config.cjs
CHANGED
package/dist/config.d.cts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { ConfigInput, HotUpdaterConfigOptions, Platform } from "@hot-updater/plugin-core";
|
|
2
2
|
import { FingerprintSource } from "@expo/fingerprint";
|
|
3
3
|
|
|
4
|
-
//#region src/utils/fingerprint/
|
|
4
|
+
//#region src/utils/fingerprint/common.d.ts
|
|
5
5
|
|
|
6
6
|
type FingerprintResult = {
|
|
7
7
|
hash: string;
|
|
8
8
|
sources: FingerprintSource[];
|
|
9
9
|
};
|
|
10
|
+
//#endregion
|
|
11
|
+
//#region src/utils/fingerprint/index.d.ts
|
|
10
12
|
declare const generateFingerprints: () => Promise<{
|
|
11
13
|
ios: FingerprintResult;
|
|
12
14
|
android: FingerprintResult;
|
package/dist/config.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { ConfigInput, HotUpdaterConfigOptions, Platform } from "@hot-updater/plugin-core";
|
|
2
2
|
import { FingerprintSource } from "@expo/fingerprint";
|
|
3
3
|
|
|
4
|
-
//#region src/utils/fingerprint/
|
|
4
|
+
//#region src/utils/fingerprint/common.d.ts
|
|
5
5
|
|
|
6
6
|
type FingerprintResult = {
|
|
7
7
|
hash: string;
|
|
8
8
|
sources: FingerprintSource[];
|
|
9
9
|
};
|
|
10
|
+
//#endregion
|
|
11
|
+
//#region src/utils/fingerprint/index.d.ts
|
|
10
12
|
declare const generateFingerprints: () => Promise<{
|
|
11
13
|
ios: FingerprintResult;
|
|
12
14
|
android: FingerprintResult;
|
package/dist/config.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "./picocolors-OFVOrezl.js";
|
|
2
|
+
import { createAndInjectFingerprintFiles, generateFingerprint, generateFingerprints, readLocalFingerprint } from "./fingerprint-CHhBVEC9.js";
|
|
2
3
|
|
|
3
4
|
//#region src/config.ts
|
|
4
5
|
const defineConfig = (config) => {
|