@ihr360cli/ihr-cli 1.0.29-beta.1 → 1.0.29-beta.2
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 +14 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -45,3 +45,17 @@ Linux ARM64 and Windows ARM64 are not published.
|
|
|
45
45
|
## License
|
|
46
46
|
|
|
47
47
|
UNLICENSED. Internal iHR360 distribution.
|
|
48
|
+
|
|
49
|
+
## After install
|
|
50
|
+
|
|
51
|
+
`npm install -g` ships the CLI only. Then run:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
ihr-cli skill setup --yes
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Or install both in one step:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx @ihr360cli/ihr-cli@latest install --yes
|
|
61
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ihr360cli/ihr-cli",
|
|
3
|
-
"version": "1.0.29-beta.
|
|
3
|
+
"version": "1.0.29-beta.2",
|
|
4
4
|
"description": "iHR360 command-line interface",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"bin": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"arm64"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@ihr360cli/ihr-cli-linux-x64": "1.0.29-beta.
|
|
27
|
-
"@ihr360cli/ihr-cli-darwin-x64": "1.0.29-beta.
|
|
28
|
-
"@ihr360cli/ihr-cli-darwin-arm64": "1.0.29-beta.
|
|
29
|
-
"@ihr360cli/ihr-cli-win32-x64": "1.0.29-beta.
|
|
26
|
+
"@ihr360cli/ihr-cli-linux-x64": "1.0.29-beta.2",
|
|
27
|
+
"@ihr360cli/ihr-cli-darwin-x64": "1.0.29-beta.2",
|
|
28
|
+
"@ihr360cli/ihr-cli-darwin-arm64": "1.0.29-beta.2",
|
|
29
|
+
"@ihr360cli/ihr-cli-win32-x64": "1.0.29-beta.2"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|