@hot-updater/cloudflare 0.33.0 → 0.33.1
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 +9 -8
- package/dist/iac/index.mjs +9 -8
- package/dist/index.cjs +8 -7
- package/dist/index.mjs +8 -7
- package/package.json +12 -9
- package/worker/dist/README.md +1 -1
- package/worker/dist/index.js +1241 -2921
- package/worker/dist/index.js.map +4 -4
package/dist/iac/index.cjs
CHANGED
|
@@ -59,7 +59,7 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
59
59
|
"object" == typeof exports && "undefined" != typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = "undefined" != typeof globalThis ? globalThis : t || self).dayjs = e();
|
|
60
60
|
})(exports, (function() {
|
|
61
61
|
"use strict";
|
|
62
|
-
var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|
|
|
62
|
+
var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = {
|
|
63
63
|
name: "en",
|
|
64
64
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
|
65
65
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
|
@@ -329,8 +329,8 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
329
329
|
}, m.toString = function() {
|
|
330
330
|
return this.$d.toUTCString();
|
|
331
331
|
}, M;
|
|
332
|
-
}(),
|
|
333
|
-
return O.prototype =
|
|
332
|
+
}(), Y = _.prototype;
|
|
333
|
+
return O.prototype = Y, [
|
|
334
334
|
["$ms", r],
|
|
335
335
|
["$s", i],
|
|
336
336
|
["$m", s],
|
|
@@ -340,7 +340,7 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
340
340
|
["$y", h],
|
|
341
341
|
["$D", d]
|
|
342
342
|
].forEach((function(t) {
|
|
343
|
-
|
|
343
|
+
Y[t[1]] = function(e) {
|
|
344
344
|
return this.$g(e, t[0], t[1]);
|
|
345
345
|
};
|
|
346
346
|
})), O.extend = function(t, e) {
|
|
@@ -922,7 +922,7 @@ const fallbackSymbols = {
|
|
|
922
922
|
const figures = isUnicodeSupported() ? mainSymbols : fallbackSymbols;
|
|
923
923
|
Object.entries(specialMainSymbols);
|
|
924
924
|
//#endregion
|
|
925
|
-
//#region ../../node_modules/.pnpm/yoctocolors@2.1.
|
|
925
|
+
//#region ../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/base.js
|
|
926
926
|
const hasColors = node_tty.default?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
927
927
|
const format = (open, close) => {
|
|
928
928
|
if (!hasColors) return (input) => input;
|
|
@@ -934,8 +934,9 @@ const format = (open, close) => {
|
|
|
934
934
|
if (index === -1) return openCode + string + closeCode;
|
|
935
935
|
let result = openCode;
|
|
936
936
|
let lastIndex = 0;
|
|
937
|
+
const replaceCode = (close === 22 ? closeCode : "") + openCode;
|
|
937
938
|
while (index !== -1) {
|
|
938
|
-
result += string.slice(lastIndex, index) +
|
|
939
|
+
result += string.slice(lastIndex, index) + replaceCode;
|
|
939
940
|
lastIndex = index + closeCode.length;
|
|
940
941
|
index = string.indexOf(closeCode, lastIndex);
|
|
941
942
|
}
|
|
@@ -3335,7 +3336,7 @@ function parseMilliseconds(milliseconds) {
|
|
|
3335
3336
|
throw new TypeError("Expected a finite number or bigint");
|
|
3336
3337
|
}
|
|
3337
3338
|
//#endregion
|
|
3338
|
-
//#region ../../node_modules/.pnpm/pretty-ms@9.
|
|
3339
|
+
//#region ../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/index.js
|
|
3339
3340
|
const isZero = (value) => value === 0 || value === 0n;
|
|
3340
3341
|
const pluralize = (word, count) => count === 1 || count === 1n ? word : `${word}s`;
|
|
3341
3342
|
const SECOND_ROUNDING_EPSILON = 1e-7;
|
|
@@ -3384,7 +3385,7 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
3384
3385
|
add(Number(parsed.hours), "hour", "h");
|
|
3385
3386
|
}
|
|
3386
3387
|
add(Number(parsed.minutes), "minute", "m");
|
|
3387
|
-
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3) {
|
|
3388
|
+
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3 && !options.subSecondsAsDecimals) {
|
|
3388
3389
|
const seconds = Number(parsed.seconds);
|
|
3389
3390
|
const milliseconds = Number(parsed.milliseconds);
|
|
3390
3391
|
const microseconds = Number(parsed.microseconds);
|
package/dist/iac/index.mjs
CHANGED
|
@@ -51,7 +51,7 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
51
51
|
"object" == typeof exports && "undefined" != typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = "undefined" != typeof globalThis ? globalThis : t || self).dayjs = e();
|
|
52
52
|
})(exports, (function() {
|
|
53
53
|
"use strict";
|
|
54
|
-
var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|
|
|
54
|
+
var t = 1e3, e = 6e4, n = 36e5, r = "millisecond", i = "second", s = "minute", u = "hour", a = "day", o = "week", c = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = {
|
|
55
55
|
name: "en",
|
|
56
56
|
weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
|
|
57
57
|
months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
|
|
@@ -321,8 +321,8 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
321
321
|
}, m.toString = function() {
|
|
322
322
|
return this.$d.toUTCString();
|
|
323
323
|
}, M;
|
|
324
|
-
}(),
|
|
325
|
-
return O.prototype =
|
|
324
|
+
}(), Y = _.prototype;
|
|
325
|
+
return O.prototype = Y, [
|
|
326
326
|
["$ms", r],
|
|
327
327
|
["$s", i],
|
|
328
328
|
["$m", s],
|
|
@@ -332,7 +332,7 @@ var import_dayjs_min = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((
|
|
|
332
332
|
["$y", h],
|
|
333
333
|
["$D", d]
|
|
334
334
|
].forEach((function(t) {
|
|
335
|
-
|
|
335
|
+
Y[t[1]] = function(e) {
|
|
336
336
|
return this.$g(e, t[0], t[1]);
|
|
337
337
|
};
|
|
338
338
|
})), O.extend = function(t, e) {
|
|
@@ -914,7 +914,7 @@ const fallbackSymbols = {
|
|
|
914
914
|
const figures = isUnicodeSupported() ? mainSymbols : fallbackSymbols;
|
|
915
915
|
Object.entries(specialMainSymbols);
|
|
916
916
|
//#endregion
|
|
917
|
-
//#region ../../node_modules/.pnpm/yoctocolors@2.1.
|
|
917
|
+
//#region ../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/base.js
|
|
918
918
|
const hasColors = tty?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
919
919
|
const format = (open, close) => {
|
|
920
920
|
if (!hasColors) return (input) => input;
|
|
@@ -926,8 +926,9 @@ const format = (open, close) => {
|
|
|
926
926
|
if (index === -1) return openCode + string + closeCode;
|
|
927
927
|
let result = openCode;
|
|
928
928
|
let lastIndex = 0;
|
|
929
|
+
const replaceCode = (close === 22 ? closeCode : "") + openCode;
|
|
929
930
|
while (index !== -1) {
|
|
930
|
-
result += string.slice(lastIndex, index) +
|
|
931
|
+
result += string.slice(lastIndex, index) + replaceCode;
|
|
931
932
|
lastIndex = index + closeCode.length;
|
|
932
933
|
index = string.indexOf(closeCode, lastIndex);
|
|
933
934
|
}
|
|
@@ -3327,7 +3328,7 @@ function parseMilliseconds(milliseconds) {
|
|
|
3327
3328
|
throw new TypeError("Expected a finite number or bigint");
|
|
3328
3329
|
}
|
|
3329
3330
|
//#endregion
|
|
3330
|
-
//#region ../../node_modules/.pnpm/pretty-ms@9.
|
|
3331
|
+
//#region ../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/index.js
|
|
3331
3332
|
const isZero = (value) => value === 0 || value === 0n;
|
|
3332
3333
|
const pluralize = (word, count) => count === 1 || count === 1n ? word : `${word}s`;
|
|
3333
3334
|
const SECOND_ROUNDING_EPSILON = 1e-7;
|
|
@@ -3376,7 +3377,7 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
3376
3377
|
add(Number(parsed.hours), "hour", "h");
|
|
3377
3378
|
}
|
|
3378
3379
|
add(Number(parsed.minutes), "minute", "m");
|
|
3379
|
-
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3) {
|
|
3380
|
+
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3 && !options.subSecondsAsDecimals) {
|
|
3380
3381
|
const seconds = Number(parsed.seconds);
|
|
3381
3382
|
const milliseconds = Number(parsed.milliseconds);
|
|
3382
3383
|
const microseconds = Number(parsed.microseconds);
|
package/dist/index.cjs
CHANGED
|
@@ -50,7 +50,7 @@ let node_fs = require("node:fs");
|
|
|
50
50
|
let node_stream_promises = require("node:stream/promises");
|
|
51
51
|
let node_stream = require("node:stream");
|
|
52
52
|
let node_buffer = require("node:buffer");
|
|
53
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
53
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/utils.js
|
|
54
54
|
var require_utils = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
55
55
|
const { inspect: inspect$2 } = require("util");
|
|
56
56
|
function getIndexPos(text, index) {
|
|
@@ -80,7 +80,7 @@ var require_utils = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
80
80
|
};
|
|
81
81
|
}));
|
|
82
82
|
//#endregion
|
|
83
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
83
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/error.js
|
|
84
84
|
var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
85
85
|
const { EOL } = require("os");
|
|
86
86
|
const { addInspection, messageGap } = require_utils();
|
|
@@ -141,7 +141,7 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
141
141
|
};
|
|
142
142
|
}));
|
|
143
143
|
//#endregion
|
|
144
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
144
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/parser.js
|
|
145
145
|
var require_parser = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
146
146
|
const { parsingErrorCode, SQLParsingError } = require_error();
|
|
147
147
|
const { getIndexPos } = require_utils();
|
|
@@ -1349,7 +1349,7 @@ const fallbackSymbols = {
|
|
|
1349
1349
|
const figures = isUnicodeSupported() ? mainSymbols : fallbackSymbols;
|
|
1350
1350
|
Object.entries(specialMainSymbols);
|
|
1351
1351
|
//#endregion
|
|
1352
|
-
//#region ../../node_modules/.pnpm/yoctocolors@2.1.
|
|
1352
|
+
//#region ../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/base.js
|
|
1353
1353
|
const hasColors = node_tty.default?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
1354
1354
|
const format = (open, close) => {
|
|
1355
1355
|
if (!hasColors) return (input) => input;
|
|
@@ -1361,8 +1361,9 @@ const format = (open, close) => {
|
|
|
1361
1361
|
if (index === -1) return openCode + string + closeCode;
|
|
1362
1362
|
let result = openCode;
|
|
1363
1363
|
let lastIndex = 0;
|
|
1364
|
+
const replaceCode = (close === 22 ? closeCode : "") + openCode;
|
|
1364
1365
|
while (index !== -1) {
|
|
1365
|
-
result += string.slice(lastIndex, index) +
|
|
1366
|
+
result += string.slice(lastIndex, index) + replaceCode;
|
|
1366
1367
|
lastIndex = index + closeCode.length;
|
|
1367
1368
|
index = string.indexOf(closeCode, lastIndex);
|
|
1368
1369
|
}
|
|
@@ -3762,7 +3763,7 @@ function parseMilliseconds(milliseconds) {
|
|
|
3762
3763
|
throw new TypeError("Expected a finite number or bigint");
|
|
3763
3764
|
}
|
|
3764
3765
|
//#endregion
|
|
3765
|
-
//#region ../../node_modules/.pnpm/pretty-ms@9.
|
|
3766
|
+
//#region ../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/index.js
|
|
3766
3767
|
const isZero = (value) => value === 0 || value === 0n;
|
|
3767
3768
|
const pluralize = (word, count) => count === 1 || count === 1n ? word : `${word}s`;
|
|
3768
3769
|
const SECOND_ROUNDING_EPSILON = 1e-7;
|
|
@@ -3811,7 +3812,7 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
3811
3812
|
add(Number(parsed.hours), "hour", "h");
|
|
3812
3813
|
}
|
|
3813
3814
|
add(Number(parsed.minutes), "minute", "m");
|
|
3814
|
-
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3) {
|
|
3815
|
+
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3 && !options.subSecondsAsDecimals) {
|
|
3815
3816
|
const seconds = Number(parsed.seconds);
|
|
3816
3817
|
const milliseconds = Number(parsed.milliseconds);
|
|
3817
3818
|
const microseconds = Number(parsed.microseconds);
|
package/dist/index.mjs
CHANGED
|
@@ -45,7 +45,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
45
45
|
}) : target, mod));
|
|
46
46
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
47
47
|
//#endregion
|
|
48
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
48
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/utils.js
|
|
49
49
|
var require_utils = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
50
50
|
const { inspect: inspect$1 } = __require("util");
|
|
51
51
|
function getIndexPos(text, index) {
|
|
@@ -75,7 +75,7 @@ var require_utils = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
75
75
|
};
|
|
76
76
|
}));
|
|
77
77
|
//#endregion
|
|
78
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
78
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/error.js
|
|
79
79
|
var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
80
80
|
const { EOL } = __require("os");
|
|
81
81
|
const { addInspection, messageGap } = require_utils();
|
|
@@ -136,7 +136,7 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
136
136
|
};
|
|
137
137
|
}));
|
|
138
138
|
//#endregion
|
|
139
|
-
//#region ../../node_modules/.pnpm/pg-minify@1.
|
|
139
|
+
//#region ../../node_modules/.pnpm/pg-minify@1.8.0/node_modules/pg-minify/lib/parser.js
|
|
140
140
|
var require_parser = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
141
141
|
const { parsingErrorCode, SQLParsingError } = require_error();
|
|
142
142
|
const { getIndexPos } = require_utils();
|
|
@@ -1344,7 +1344,7 @@ const fallbackSymbols = {
|
|
|
1344
1344
|
const figures = isUnicodeSupported() ? mainSymbols : fallbackSymbols;
|
|
1345
1345
|
Object.entries(specialMainSymbols);
|
|
1346
1346
|
//#endregion
|
|
1347
|
-
//#region ../../node_modules/.pnpm/yoctocolors@2.1.
|
|
1347
|
+
//#region ../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/base.js
|
|
1348
1348
|
const hasColors = tty?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
1349
1349
|
const format = (open, close) => {
|
|
1350
1350
|
if (!hasColors) return (input) => input;
|
|
@@ -1356,8 +1356,9 @@ const format = (open, close) => {
|
|
|
1356
1356
|
if (index === -1) return openCode + string + closeCode;
|
|
1357
1357
|
let result = openCode;
|
|
1358
1358
|
let lastIndex = 0;
|
|
1359
|
+
const replaceCode = (close === 22 ? closeCode : "") + openCode;
|
|
1359
1360
|
while (index !== -1) {
|
|
1360
|
-
result += string.slice(lastIndex, index) +
|
|
1361
|
+
result += string.slice(lastIndex, index) + replaceCode;
|
|
1361
1362
|
lastIndex = index + closeCode.length;
|
|
1362
1363
|
index = string.indexOf(closeCode, lastIndex);
|
|
1363
1364
|
}
|
|
@@ -3757,7 +3758,7 @@ function parseMilliseconds(milliseconds) {
|
|
|
3757
3758
|
throw new TypeError("Expected a finite number or bigint");
|
|
3758
3759
|
}
|
|
3759
3760
|
//#endregion
|
|
3760
|
-
//#region ../../node_modules/.pnpm/pretty-ms@9.
|
|
3761
|
+
//#region ../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/index.js
|
|
3761
3762
|
const isZero = (value) => value === 0 || value === 0n;
|
|
3762
3763
|
const pluralize = (word, count) => count === 1 || count === 1n ? word : `${word}s`;
|
|
3763
3764
|
const SECOND_ROUNDING_EPSILON = 1e-7;
|
|
@@ -3806,7 +3807,7 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
3806
3807
|
add(Number(parsed.hours), "hour", "h");
|
|
3807
3808
|
}
|
|
3808
3809
|
add(Number(parsed.minutes), "minute", "m");
|
|
3809
|
-
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3) {
|
|
3810
|
+
if (!options.hideSeconds) if (options.separateMilliseconds || options.formatSubMilliseconds || !options.colonNotation && milliseconds < 1e3 && !options.subSecondsAsDecimals) {
|
|
3810
3811
|
const seconds = Number(parsed.seconds);
|
|
3811
3812
|
const milliseconds = Number(parsed.milliseconds);
|
|
3812
3813
|
const microseconds = Number(parsed.microseconds);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/cloudflare",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.33.
|
|
4
|
+
"version": "0.33.1",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"license": "MIT",
|
|
30
|
-
"repository":
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/gronxb/hot-updater"
|
|
33
|
+
},
|
|
31
34
|
"author": "gronxb <gron1gh1@gmail.com> (https://github.com/gronxb)",
|
|
32
35
|
"bugs": {
|
|
33
36
|
"url": "https://github.com/gronxb/hot-updater/issues"
|
|
@@ -47,17 +50,17 @@
|
|
|
47
50
|
"package.json"
|
|
48
51
|
],
|
|
49
52
|
"dependencies": {
|
|
50
|
-
"@aws-sdk/client-s3": "3.
|
|
53
|
+
"@aws-sdk/client-s3": "3.1066.0",
|
|
51
54
|
"@aws-sdk/lib-storage": "3.1008.0",
|
|
52
55
|
"@aws-sdk/s3-request-presigner": "3.1008.0",
|
|
53
56
|
"cloudflare": "4.2.0",
|
|
54
57
|
"hono": "4.12.9",
|
|
55
58
|
"uuidv7": "^1.0.2",
|
|
56
|
-
"@hot-updater/
|
|
57
|
-
"@hot-updater/
|
|
58
|
-
"@hot-updater/
|
|
59
|
-
"@hot-updater/plugin-core": "0.33.
|
|
60
|
-
"@hot-updater/server": "0.33.
|
|
59
|
+
"@hot-updater/cli-tools": "0.33.1",
|
|
60
|
+
"@hot-updater/core": "0.33.1",
|
|
61
|
+
"@hot-updater/js": "0.33.1",
|
|
62
|
+
"@hot-updater/plugin-core": "0.33.1",
|
|
63
|
+
"@hot-updater/server": "0.33.1"
|
|
61
64
|
},
|
|
62
65
|
"devDependencies": {
|
|
63
66
|
"@cloudflare/vitest-pool-workers": "0.13.0",
|
|
@@ -74,7 +77,7 @@
|
|
|
74
77
|
"vitest": "4.1.4",
|
|
75
78
|
"wrangler": "^4.5.0",
|
|
76
79
|
"xdg-app-paths": "^8.3.0",
|
|
77
|
-
"@hot-updater/test-utils": "0.33.
|
|
80
|
+
"@hot-updater/test-utils": "0.33.1"
|
|
78
81
|
},
|
|
79
82
|
"scripts": {
|
|
80
83
|
"build": "tsdown && pnpm build:worker",
|
package/worker/dist/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
This folder contains the built output assets for the worker "hot-updater" generated at 2026-06-
|
|
1
|
+
This folder contains the built output assets for the worker "hot-updater" generated at 2026-06-12T18:34:53.149Z.
|