@scanrail/cli 0.1.0 → 0.1.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/README.md +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Scanrail CLI
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/scanrail)
|
|
4
4
|
[](https://github.com/raeseoklee/scanrail/actions/workflows/ci.yml)
|
|
5
5
|
[](https://github.com/raeseoklee/scanrail/blob/main/LICENSE)
|
|
6
6
|
|
|
@@ -11,14 +11,14 @@ This package installs the `scanrail` command and delegates to the platform-speci
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install -g
|
|
14
|
+
npm install -g scanrail
|
|
15
15
|
scanrail doctor
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
You can also run it without a global install:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npx
|
|
21
|
+
npx scanrail doctor
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## First Scan
|
|
@@ -32,7 +32,7 @@ The first release candidate includes the CLI scaffold, config generation, worksp
|
|
|
32
32
|
|
|
33
33
|
## Package Layout
|
|
34
34
|
|
|
35
|
-
`@scanrail/cli` is the wrapper package
|
|
35
|
+
`scanrail` is the recommended npm entrypoint. `@scanrail/cli` is the underlying scoped wrapper package and installs one optional platform package:
|
|
36
36
|
|
|
37
37
|
- `@scanrail/cli-darwin-arm64`
|
|
38
38
|
- `@scanrail/cli-darwin-x64`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scanrail/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Developer-first security scan orchestrator",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@scanrail/cli-darwin-arm64": "0.1.
|
|
24
|
-
"@scanrail/cli-darwin-x64": "0.1.
|
|
25
|
-
"@scanrail/cli-linux-arm64": "0.1.
|
|
26
|
-
"@scanrail/cli-linux-x64": "0.1.
|
|
27
|
-
"@scanrail/cli-win32-arm64": "0.1.
|
|
28
|
-
"@scanrail/cli-win32-x64": "0.1.
|
|
23
|
+
"@scanrail/cli-darwin-arm64": "0.1.1",
|
|
24
|
+
"@scanrail/cli-darwin-x64": "0.1.1",
|
|
25
|
+
"@scanrail/cli-linux-arm64": "0.1.1",
|
|
26
|
+
"@scanrail/cli-linux-x64": "0.1.1",
|
|
27
|
+
"@scanrail/cli-win32-arm64": "0.1.1",
|
|
28
|
+
"@scanrail/cli-win32-x64": "0.1.1"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|