@hot-updater/expo 0.20.2 → 0.20.4
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.cjs +2 -3
- package/dist/index.js +2 -3
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -633,7 +633,6 @@ const fallbackSymbols = {
|
|
|
633
633
|
};
|
|
634
634
|
const shouldUseMain = isUnicodeSupported();
|
|
635
635
|
const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
636
|
-
var figures_default = figures;
|
|
637
636
|
const replacements = Object.entries(specialMainSymbols);
|
|
638
637
|
|
|
639
638
|
//#endregion
|
|
@@ -715,8 +714,8 @@ const defaultVerboseFunction = ({ type, message, timestamp, piped, commandId, re
|
|
|
715
714
|
const serializeTimestamp = (timestamp) => `${padField(timestamp.getHours(), 2)}:${padField(timestamp.getMinutes(), 2)}:${padField(timestamp.getSeconds(), 2)}.${padField(timestamp.getMilliseconds(), 3)}`;
|
|
716
715
|
const padField = (field, padding) => String(field).padStart(padding, "0");
|
|
717
716
|
const getFinalIcon = ({ failed, reject }) => {
|
|
718
|
-
if (!failed) return
|
|
719
|
-
return reject ?
|
|
717
|
+
if (!failed) return figures.tick;
|
|
718
|
+
return reject ? figures.cross : figures.warning;
|
|
720
719
|
};
|
|
721
720
|
const ICONS = {
|
|
722
721
|
command: ({ piped }) => piped ? "|" : "$",
|
package/dist/index.js
CHANGED
|
@@ -637,7 +637,6 @@ const fallbackSymbols = {
|
|
|
637
637
|
};
|
|
638
638
|
const shouldUseMain = isUnicodeSupported();
|
|
639
639
|
const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
640
|
-
var figures_default = figures;
|
|
641
640
|
const replacements = Object.entries(specialMainSymbols);
|
|
642
641
|
|
|
643
642
|
//#endregion
|
|
@@ -719,8 +718,8 @@ const defaultVerboseFunction = ({ type, message, timestamp, piped, commandId, re
|
|
|
719
718
|
const serializeTimestamp = (timestamp) => `${padField(timestamp.getHours(), 2)}:${padField(timestamp.getMinutes(), 2)}:${padField(timestamp.getSeconds(), 2)}.${padField(timestamp.getMilliseconds(), 3)}`;
|
|
720
719
|
const padField = (field, padding) => String(field).padStart(padding, "0");
|
|
721
720
|
const getFinalIcon = ({ failed, reject }) => {
|
|
722
|
-
if (!failed) return
|
|
723
|
-
return reject ?
|
|
721
|
+
if (!failed) return figures.tick;
|
|
722
|
+
return reject ? figures.cross : figures.warning;
|
|
724
723
|
};
|
|
725
724
|
const ICONS = {
|
|
726
725
|
command: ({ piped }) => piped ? "|" : "$",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/expo",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.20.
|
|
4
|
+
"version": "0.20.4",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@clack/prompts": "0.10.0",
|
|
25
|
-
"@hot-updater/bare": "0.20.
|
|
26
|
-
"@hot-updater/plugin-core": "0.20.
|
|
25
|
+
"@hot-updater/bare": "0.20.4",
|
|
26
|
+
"@hot-updater/plugin-core": "0.20.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.8.7",
|