@hot-updater/cloudflare 0.18.5 → 0.19.1-rc.0
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/iac/index.cjs +3 -1
- package/dist/iac/index.js +3 -1
- package/package.json +4 -4
- package/worker/dist/README.md +1 -1
package/dist/iac/index.cjs
CHANGED
|
@@ -12349,7 +12349,9 @@ function App() {
|
|
|
12349
12349
|
}
|
|
12350
12350
|
|
|
12351
12351
|
export default HotUpdater.wrap({
|
|
12352
|
-
source: getUpdateSource("%%source%%"
|
|
12352
|
+
source: getUpdateSource("%%source%%", {
|
|
12353
|
+
updateStrategy: "fingerprint", // or "appVersion"
|
|
12354
|
+
}),
|
|
12353
12355
|
})(App);`;
|
|
12354
12356
|
const deployWorker = async (oauth_token, accountId, { d1DatabaseId, d1DatabaseName, r2BucketName }) => {
|
|
12355
12357
|
const cwd = (0, __hot_updater_plugin_core.getCwd)();
|
package/dist/iac/index.js
CHANGED
|
@@ -12352,7 +12352,9 @@ function App() {
|
|
|
12352
12352
|
}
|
|
12353
12353
|
|
|
12354
12354
|
export default HotUpdater.wrap({
|
|
12355
|
-
source: getUpdateSource("%%source%%"
|
|
12355
|
+
source: getUpdateSource("%%source%%", {
|
|
12356
|
+
updateStrategy: "fingerprint", // or "appVersion"
|
|
12357
|
+
}),
|
|
12356
12358
|
})(App);`;
|
|
12357
12359
|
const deployWorker = async (oauth_token, accountId, { d1DatabaseId, d1DatabaseName, r2BucketName }) => {
|
|
12358
12360
|
const cwd = getCwd();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/cloudflare",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.19.1-rc.0",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"cloudflare": "4.2.0",
|
|
43
|
-
"@hot-updater/core": "0.
|
|
44
|
-
"@hot-updater/
|
|
45
|
-
"@hot-updater/
|
|
43
|
+
"@hot-updater/core": "0.19.1-rc.0",
|
|
44
|
+
"@hot-updater/js": "0.19.1-rc.0",
|
|
45
|
+
"@hot-updater/plugin-core": "0.19.1-rc.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@clack/prompts": "0.10.0",
|
package/worker/dist/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
This folder contains the built output assets for the worker "hot-updater" generated at 2025-06-
|
|
1
|
+
This folder contains the built output assets for the worker "hot-updater" generated at 2025-06-12T08:20:31.599Z.
|