@xuhaojun/githunk 0.1.0 → 0.1.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.
- package/README.md +9 -0
- package/dist/githunk.js +1446 -313
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -28,6 +28,15 @@ cd path/to/repository
|
|
|
28
28
|
githunk
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
Or point it at a repository from anywhere:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
githunk --path path/to/repository
|
|
35
|
+
githunk path/to/repository
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
`githunk --help` prints all options; `githunk --version` prints the installed version.
|
|
39
|
+
|
|
31
40
|
## Development
|
|
32
41
|
|
|
33
42
|
This repository uses Bun for development and for producing the Node.js bundle published to npm:
|