hulud-party-scanner 1.0.2 → 1.0.3
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 +8 -3
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -6,10 +6,15 @@ This project is a Node.js implementation based on the original shell script from
|
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
You can run the scanner against your current project directory, or specify a path to another one.
|
|
10
|
+
|
|
11
|
+
To scan the current directory:
|
|
10
12
|
|
|
11
13
|
```bash
|
|
12
|
-
npx hulud-party-scanner
|
|
14
|
+
npx hulud-party-scanner
|
|
13
15
|
```
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
To scan a specific directory:
|
|
18
|
+
```bash
|
|
19
|
+
npx hulud-party-scanner "/path/to/your/project"
|
|
20
|
+
```
|