@apicircle/cli 1.0.4 → 1.0.6
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 -1
- package/dist/bin/cli.cjs +1560 -0
- package/dist/bin/cli.cjs.map +1 -0
- package/dist/bin/cli.d.cts +3 -0
- package/dist/bin/cli.d.ts +3 -0
- package/dist/bin/cli.js +55 -0
- package/dist/bin/cli.js.map +1 -0
- package/dist/chunk-HNK3FW57.js +84 -0
- package/dist/chunk-HNK3FW57.js.map +1 -0
- package/dist/index.cjs +86 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -8
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -45,7 +45,10 @@ npm install -g @apicircle/cli
|
|
|
45
45
|
npx @apicircle/cli --help
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
Single command, single binary: `apicircle`.
|
|
48
|
+
Single command, single binary: `apicircle`. Top-level `--version` /
|
|
49
|
+
`-v` / `-V` and `--help` / `-h` are handled by the binary itself, so
|
|
50
|
+
`apicircle --version` prints the package version without booting a
|
|
51
|
+
subcommand.
|
|
49
52
|
|
|
50
53
|
## What you can do with it
|
|
51
54
|
|