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