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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yaver-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Push existing React Native projects to yaver.io for testing on real devices",
5
5
  "bin": {
6
6
  "yaver-push": "bin/yaver-push"
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 @yaver/cli hermesc binaries or ensure react-native is installed.`
24
+ `hermesc not found for ${key}. Install yaver-cli hermesc binaries or ensure react-native is installed.`
25
25
  );
26
26
  }
27
27
 
@@ -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 @yaver/cli or yaver.io app.');
25
+ console.error(' Update yaver-cli or yaver.io app.');
26
26
  process.exit(1);
27
27
  }
28
28