contribute-now 0.5.0-dev.fefd5d0 → 0.5.0-staging.aa966be
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 +3 -2
- 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
|
package/dist/index.js
CHANGED
|
@@ -2268,12 +2268,13 @@ import pc7 from "picocolors";
|
|
|
2268
2268
|
// package.json
|
|
2269
2269
|
var package_default = {
|
|
2270
2270
|
name: "contribute-now",
|
|
2271
|
-
version: "0.5.0-
|
|
2271
|
+
version: "0.5.0-staging.aa966be",
|
|
2272
2272
|
description: "Developer CLI that automates git workflows — branching, syncing, committing, and PRs — with multi-workflow and commit convention support.",
|
|
2273
2273
|
type: "module",
|
|
2274
2274
|
bin: {
|
|
2275
2275
|
contrib: "dist/index.js",
|
|
2276
|
-
contribute: "dist/index.js"
|
|
2276
|
+
contribute: "dist/index.js",
|
|
2277
|
+
cn: "dist/index.js"
|
|
2277
2278
|
},
|
|
2278
2279
|
files: [
|
|
2279
2280
|
"dist"
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contribute-now",
|
|
3
|
-
"version": "0.5.0-
|
|
3
|
+
"version": "0.5.0-staging.aa966be",
|
|
4
4
|
"description": "Developer CLI that automates git workflows — branching, syncing, committing, and PRs — with multi-workflow and commit convention support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"contrib": "dist/index.js",
|
|
8
|
-
"contribute": "dist/index.js"
|
|
8
|
+
"contribute": "dist/index.js",
|
|
9
|
+
"cn": "dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
12
|
"dist"
|