reargv 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,8 @@ $ npm install reargv
13
13
 
14
14
  ## Usage
15
15
 
16
- **Script pipeline**
16
+ ### Script pipeline
17
+
17
18
  First, create a script file somewhere
18
19
 
19
20
  ```js
@@ -32,7 +33,7 @@ $ node ./argv.mjs hello --world reargv on.npm --and='this is great!' help VERSIO
32
33
 
33
34
 
34
35
  ### Output
35
- (`(...) > output.json` in `output.json`)
36
+ (`(...) > output.json` to output in `output.json`)
36
37
 
37
38
  ```js
38
39
  {
@@ -51,7 +52,7 @@ $ node ./argv.mjs hello --world reargv on.npm --and='this is great!' help VERSIO
51
52
 
52
53
  ---
53
54
 
54
- **mocking process.argv**
55
+ ### Mocking process.argv
55
56
 
56
57
  ```js
57
58
  import { reargv } from "reargv";
@@ -115,4 +116,4 @@ console.log(argv);
115
116
 
116
117
  ## License
117
118
 
118
- [MIT © 2025](https://github.com/ManuUseGitHub/reargv?tab=MIT-1-ov-file#readme)
119
+ [MIT](https://github.com/ManuUseGitHub/reargv?tab=MIT-1-ov-file#readme)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reargv",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Reads command arguments and gives a representative object of them",
5
5
  "main": "index.mjs",
6
6
  "scripts": {