@optique/run 1.0.0-dev.1808 → 1.0.0-dev.1818

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 +6 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -23,6 +23,12 @@ Use *@optique/core* instead when:
23
23
  - Working in environments without `process` (browsers, web workers)
24
24
  - Building reusable parser components
25
25
 
26
+ Built-in help, version, and completion are parser-aware. Optique only
27
+ intercepts `help`, `version`, `completion`, `--help`, `--version`,
28
+ `--completion`, and configured aliases when the user parser leaves them
29
+ unconsumed. If your parser uses the same token sequence as ordinary
30
+ data, the parse result wins.
31
+
26
32
 
27
33
  Installation
28
34
  ------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optique/run",
3
- "version": "1.0.0-dev.1808+e840dccd",
3
+ "version": "1.0.0-dev.1818+1aa43bd4",
4
4
  "description": "Type-safe combinatorial command-line interface parser",
5
5
  "keywords": [
6
6
  "CLI",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "sideEffects": false,
72
72
  "dependencies": {
73
- "@optique/core": "1.0.0-dev.1808+e840dccd"
73
+ "@optique/core": "1.0.0-dev.1818+1aa43bd4"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/node": "^20.19.9",