contribute-now 0.7.1 → 0.7.2-dev.d0db30a
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 +17 -6
- package/dist/cli.js +17339 -0
- package/dist/index.js +31 -17343
- package/package.json +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contribute-now",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2-dev.d0db30a",
|
|
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": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "bun build src/index.ts --outfile dist/index.js --target node",
|
|
15
|
+
"build": "bun build src/cli.ts --outfile dist/cli.js --target bun && bun build src/index.ts --outfile dist/index.js --target node --no-bundle",
|
|
16
16
|
"cli": "bun run src/index.ts --",
|
|
17
17
|
"dev": "bun src/index.ts",
|
|
18
18
|
"test": "bun test",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"landing:preview": "bun run --cwd landing preview"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=18",
|
|
29
28
|
"bun": ">=1.0"
|
|
30
29
|
},
|
|
31
30
|
"keywords": [
|