contribute-now 0.5.0 → 0.6.0-dev.ec5e617
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 +11 -1
- package/dist/index.js +454 -192
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -47,7 +47,9 @@ npm install -g contribute-now
|
|
|
47
47
|
contrib setup
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
>
|
|
50
|
+
> `contrib`, `contribute`, and `cn` all invoke the same binary — use whichever you prefer.
|
|
51
|
+
>
|
|
52
|
+
> **Fun fact:** `cn` is shorter than `git`. Yes, your workflow command is now faster to type than git itself. 🚀
|
|
51
53
|
|
|
52
54
|
---
|
|
53
55
|
|
|
@@ -61,6 +63,14 @@ npm install -g contribute-now
|
|
|
61
63
|
bun install -g contribute-now
|
|
62
64
|
```
|
|
63
65
|
|
|
66
|
+
Once installed, you can use any of the three aliases:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
contrib setup # classic
|
|
70
|
+
contribute setup # spelled out
|
|
71
|
+
cn setup # shortest — even shorter than git!
|
|
72
|
+
```
|
|
73
|
+
|
|
64
74
|
## Prerequisites
|
|
65
75
|
|
|
66
76
|
- **[Git](https://git-scm.com/)** — required
|