yaver-cli 1.0.1 → 1.95.5

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/bin/yaver ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runUnified } = require('../src/index');
4
+
5
+ runUnified(process.argv.slice(2));
package/bin/yaver-push CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { run } = require('../src/index');
4
- run(process.argv.slice(2));
3
+ const { runPushCli } = require('../src/index');
4
+ runPushCli(process.argv.slice(2));
Binary file
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "yaver-cli",
3
- "version": "1.0.1",
4
- "description": "Push existing React Native projects to yaver.io for testing on real devices",
3
+ "version": "1.95.5",
4
+ "description": "Unified npm bootstrap for the Yaver agent and push-to-device React Native tooling",
5
5
  "bin": {
6
+ "yaver": "bin/yaver",
6
7
  "yaver-push": "bin/yaver-push"
7
8
  },
8
9
  "main": "src/index.js",
@@ -20,7 +21,7 @@
20
21
  "expo-go-alternative"
21
22
  ],
22
23
  "author": "Yaver <hello@yaver.io>",
23
- "license": "MIT",
24
+ "license": "AGPL-3.0-only",
24
25
  "repository": {
25
26
  "type": "git",
26
27
  "url": "git+https://github.com/kivanccakmak/yaver.io.git"