@phystack/device-phyos 4.5.54-dev → 4.5.55-dev
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/README.md +19 -11
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -11,27 +11,33 @@ Download the pre-built binary for your platform. No runtime dependencies require
|
|
|
11
11
|
```bash
|
|
12
12
|
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-linux-x64.tar.gz | tar xz
|
|
13
13
|
sudo mv phydevice /usr/local/bin/
|
|
14
|
+
hash -r
|
|
15
|
+
phydevice --version
|
|
14
16
|
```
|
|
15
17
|
|
|
16
|
-
###
|
|
18
|
+
### Linux (ARM64)
|
|
17
19
|
|
|
18
20
|
```bash
|
|
19
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-
|
|
21
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-linux-arm64.tar.gz | tar xz
|
|
20
22
|
sudo mv phydevice /usr/local/bin/
|
|
23
|
+
hash -r
|
|
24
|
+
phydevice --version
|
|
21
25
|
```
|
|
22
26
|
|
|
23
|
-
### macOS (
|
|
27
|
+
### macOS (Apple Silicon)
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-darwin-
|
|
30
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-darwin-arm64.tar.gz | tar xz
|
|
27
31
|
sudo mv phydevice /usr/local/bin/
|
|
32
|
+
phydevice --version
|
|
28
33
|
```
|
|
29
34
|
|
|
30
|
-
###
|
|
35
|
+
### macOS (Intel)
|
|
31
36
|
|
|
32
37
|
```bash
|
|
33
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-
|
|
38
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phydevice-darwin-x64.tar.gz | tar xz
|
|
34
39
|
sudo mv phydevice /usr/local/bin/
|
|
40
|
+
phydevice --version
|
|
35
41
|
```
|
|
36
42
|
|
|
37
43
|
### Install a specific version
|
|
@@ -39,17 +45,19 @@ sudo mv phydevice /usr/local/bin/
|
|
|
39
45
|
Replace `latest` with the version number:
|
|
40
46
|
|
|
41
47
|
```bash
|
|
42
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/4.5.
|
|
48
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/4.5.54-dev/phydevice-linux-x64.tar.gz | tar xz
|
|
43
49
|
```
|
|
44
50
|
|
|
51
|
+
> **Note:** If you previously had phydevice installed via npm, remove it first or run `hash -r` after installing the binary to clear the shell's path cache.
|
|
52
|
+
|
|
45
53
|
## Supported platforms
|
|
46
54
|
|
|
47
55
|
| Platform | Architecture | Download |
|
|
48
56
|
|----------|-------------|----------|
|
|
49
|
-
| Linux | x86_64 |
|
|
50
|
-
| Linux | ARM64 |
|
|
51
|
-
| macOS | ARM64 |
|
|
52
|
-
| macOS | x86_64 |
|
|
57
|
+
| Linux | x86_64 | [phydevice-linux-x64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phydevice-linux-x64.tar.gz) |
|
|
58
|
+
| Linux | ARM64 | [phydevice-linux-arm64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phydevice-linux-arm64.tar.gz) |
|
|
59
|
+
| macOS | ARM64 | [phydevice-darwin-arm64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phydevice-darwin-arm64.tar.gz) |
|
|
60
|
+
| macOS | x86_64 | [phydevice-darwin-x64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phydevice-darwin-x64.tar.gz) |
|
|
53
61
|
|
|
54
62
|
## Local development
|
|
55
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phystack/device-phyos",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.55-dev",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"description": "",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@phystack/axios-proxy": "4.5.
|
|
32
|
-
"@phystack/hub-client": "4.5.
|
|
33
|
-
"@phystack/hub-device": "4.5.
|
|
34
|
-
"@phystack/phy-logger": "4.5.
|
|
31
|
+
"@phystack/axios-proxy": "4.5.55-dev",
|
|
32
|
+
"@phystack/hub-client": "4.5.55-dev",
|
|
33
|
+
"@phystack/hub-device": "4.5.55-dev",
|
|
34
|
+
"@phystack/phy-logger": "4.5.55-dev",
|
|
35
35
|
"@vercel/ncc": "^0.38.1",
|
|
36
36
|
"async-mutex": "^0.5.0",
|
|
37
37
|
"bufferutil": "^4.0.8",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"typescript": "^5.5.2",
|
|
66
66
|
"typescript-cli": "^0.1.0"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "4c26e96c9ed3f6c94c12f014640a9018e8713d70"
|
|
69
69
|
}
|