opencommit 1.1.49 → 1.1.51
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 +3 -1
- package/out/cli.cjs +3 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -99,6 +99,7 @@ oc config set language=fr
|
|
|
99
99
|
oc config set language=French
|
|
100
100
|
oc config set language=française
|
|
101
101
|
```
|
|
102
|
+
|
|
102
103
|
The default language set is **English**
|
|
103
104
|
All available languages are currently listed in the [i18n](https://github.com/di-sukharev/opencommit/tree/master/src/i18n) folder
|
|
104
105
|
|
|
@@ -117,6 +118,7 @@ git commit -m "${generatedMessage}" --no-verify
|
|
|
117
118
|
```
|
|
118
119
|
|
|
119
120
|
### Ignore files
|
|
121
|
+
|
|
120
122
|
You can ignore files from submission to OpenAI by creating a `.opencommitignore` file. For example:
|
|
121
123
|
|
|
122
124
|
```ignorelang
|
|
@@ -155,4 +157,4 @@ Or follow the process of your IDE Source Control feature, when it calls `git com
|
|
|
155
157
|
|
|
156
158
|
## Payments
|
|
157
159
|
|
|
158
|
-
You pay for your own requests to OpenAI API. OpenCommit uses ChatGPT official model, that is ~
|
|
160
|
+
You pay for your own requests to OpenAI API. OpenCommit uses ChatGPT (3.5-turbo) official model, that is ~15x times cheaper than GPT-4.
|
package/out/cli.cjs
CHANGED
|
@@ -16076,7 +16076,7 @@ function G3(t, e2) {
|
|
|
16076
16076
|
// package.json
|
|
16077
16077
|
var package_default = {
|
|
16078
16078
|
name: "opencommit",
|
|
16079
|
-
version: "1.1.
|
|
16079
|
+
version: "1.1.50",
|
|
16080
16080
|
description: "GPT CLI to auto-generate impressive commits in 1 second. Killing lame commits with AI \u{1F92F}\u{1F52B}",
|
|
16081
16081
|
keywords: [
|
|
16082
16082
|
"git",
|
|
@@ -16093,7 +16093,8 @@ var package_default = {
|
|
|
16093
16093
|
main: "cli.js",
|
|
16094
16094
|
bin: {
|
|
16095
16095
|
opencommit: "./out/cli.cjs",
|
|
16096
|
-
oc: "./out/cli.cjs"
|
|
16096
|
+
oc: "./out/cli.cjs",
|
|
16097
|
+
oco: "./out/cli.cjs"
|
|
16097
16098
|
},
|
|
16098
16099
|
repository: {
|
|
16099
16100
|
url: "https://github.com/di-sukharev/opencommit"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencommit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.51",
|
|
4
4
|
"description": "GPT CLI to auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"main": "cli.js",
|
|
18
18
|
"bin": {
|
|
19
19
|
"opencommit": "./out/cli.cjs",
|
|
20
|
-
"oc": "./out/cli.cjs"
|
|
20
|
+
"oc": "./out/cli.cjs",
|
|
21
|
+
"oco": "./out/cli.cjs"
|
|
21
22
|
},
|
|
22
23
|
"repository": {
|
|
23
24
|
"url": "https://github.com/di-sukharev/opencommit"
|