yaver-cli 1.0.0 → 1.0.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/package.json +1 -1
- package/sdk-manifest.json +2 -0
- package/src/bundler.js +1 -1
- package/src/commands/push.js +1 -1
package/package.json
CHANGED
package/sdk-manifest.json
CHANGED
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
"react-native-ble-plx": "3.2.0",
|
|
26
26
|
"react-native-mmkv": "4.3.0",
|
|
27
27
|
"@shopify/react-native-skia": "2.6.2",
|
|
28
|
+
"react-native-nitro-modules": "0.35.3",
|
|
29
|
+
"react-native-worklets": "0.5.2",
|
|
28
30
|
"react-native-udp": "4.1.7",
|
|
29
31
|
"react-native-markdown-display": "7.0.2",
|
|
30
32
|
"victory-native": "41.20.2",
|
package/src/bundler.js
CHANGED
|
@@ -21,7 +21,7 @@ function getHermescPath() {
|
|
|
21
21
|
if (rnHermesc) return rnHermesc;
|
|
22
22
|
|
|
23
23
|
throw new Error(
|
|
24
|
-
`hermesc not found for ${key}. Install
|
|
24
|
+
`hermesc not found for ${key}. Install yaver-cli hermesc binaries or ensure react-native is installed.`
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
|
package/src/commands/push.js
CHANGED
|
@@ -22,7 +22,7 @@ async function push(options = {}) {
|
|
|
22
22
|
|
|
23
23
|
if (health.hermes?.bytecodeVersion !== sdkManifest.hermes.bytecodeVersion) {
|
|
24
24
|
console.error(`�� Hermes BC mismatch: device BC${health.hermes?.bytecodeVersion}, CLI BC${sdkManifest.hermes.bytecodeVersion}`);
|
|
25
|
-
console.error(' Update
|
|
25
|
+
console.error(' Update yaver-cli or yaver.io app.');
|
|
26
26
|
process.exit(1);
|
|
27
27
|
}
|
|
28
28
|
|