nococli 1.0.0 → 1.0.1
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 +2 -2
- package/dist/cli.js +3737 -3784
- package/dist/install.js +707 -737
- package/dist/types.js +7 -14
- package/dist/uninstall.js +701 -716
- package/dist/utils/git.js +119 -0
- package/dist/utils/hook.js +87 -0
- package/dist/utils/logger.js +3190 -0
- package/dist/utils/paths.js +83 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# nococli
|
|
2
2
|
|
|
3
3
|
> AI exists to help you. You remain the owner and accountable for your work.
|
|
4
4
|
|
|
@@ -13,7 +13,7 @@ Your commits should reflect that.
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx
|
|
16
|
+
npx nococli
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
One command. Your commits are yours again.
|