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.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. 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
- To scan a project, run the following command in your terminal. You can target a specific directory or run it in your current directory.
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 "/path/to/your/project"
14
+ npx hulud-party-scanner
13
15
  ```
14
16
 
15
- Si no se especifica una ruta, el escáner se ejecutará en el directorio actual.
17
+ To scan a specific directory:
18
+ ```bash
19
+ npx hulud-party-scanner "/path/to/your/project"
20
+ ```
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "hulud-party-scanner",
3
- "version": "1.0.2",
4
- "preferGlobal": true,
3
+ "version": "1.0.3",
5
4
  "bin": {
6
5
  "hulud-party-scanner": "./scan.js"
7
6
  },