opencommit 3.1.2 → 3.2.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 +24 -38
- package/out/cli.cjs +6987 -9928
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencommit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"description": "Auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -46,8 +46,9 @@
|
|
|
46
46
|
"dev:gemini": "OCO_AI_PROVIDER='gemini' ts-node ./src/cli.ts",
|
|
47
47
|
"build": "rimraf out && node esbuild.config.js",
|
|
48
48
|
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
|
|
49
|
-
"deploy": "npm
|
|
50
|
-
"deploy:
|
|
49
|
+
"deploy": "npm publish --tag latest",
|
|
50
|
+
"deploy:build": "npm run build:push && git push --tags && npm run deploy",
|
|
51
|
+
"deploy:patch": "npm version patch && npm run deploy:build",
|
|
51
52
|
"lint": "eslint src --ext ts && tsc --noEmit",
|
|
52
53
|
"format": "prettier --write src",
|
|
53
54
|
"test": "node --no-warnings --experimental-vm-modules $( [ -f ./node_modules/.bin/jest ] && echo ./node_modules/.bin/jest || which jest ) test/unit",
|
|
@@ -88,7 +89,6 @@
|
|
|
88
89
|
"@google/generative-ai": "^0.11.4",
|
|
89
90
|
"@octokit/webhooks-schemas": "^6.11.0",
|
|
90
91
|
"@octokit/webhooks-types": "^6.11.0",
|
|
91
|
-
"ai": "^2.2.14",
|
|
92
92
|
"axios": "^1.3.4",
|
|
93
93
|
"chalk": "^5.2.0",
|
|
94
94
|
"cleye": "^1.3.2",
|
|
@@ -97,6 +97,6 @@
|
|
|
97
97
|
"ignore": "^5.2.4",
|
|
98
98
|
"ini": "^3.0.1",
|
|
99
99
|
"inquirer": "^9.1.4",
|
|
100
|
-
"openai": "^4.
|
|
100
|
+
"openai": "^4.57.0"
|
|
101
101
|
}
|
|
102
102
|
}
|