Skip to content

Commit a80dcb0

Browse files
committed
build
1 parent bebbed8 commit a80dcb0

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

out/cli.cjs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28111,7 +28111,7 @@ function G3(t2, e3) {
2811128111
// package.json
2811228112
var package_default = {
2811328113
name: "opencommit",
28114-
version: "3.0.16",
28114+
version: "3.0.17",
2811528115
description: "Auto-generate impressive commits in 1 second. Killing lame commits with AI \u{1F92F}\u{1F52B}",
2811628116
keywords: [
2811728117
"git",
@@ -28157,7 +28157,8 @@ var package_default = {
2815728157
"dev:gemini": "OCO_AI_PROVIDER='gemini' ts-node ./src/cli.ts",
2815828158
build: "rimraf out && node esbuild.config.js",
2815928159
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
28160-
deploy: "npm version patch && npm run build:push && git push --tags && npm publish --tag latest",
28160+
deploy: "npm run build:push && git push --tags && npm publish --tag latest",
28161+
"deploy:patch": "npm version patch && npm run deploy",
2816128162
lint: "eslint src --ext ts && tsc --noEmit",
2816228163
format: "prettier --write src",
2816328164
test: "node --no-warnings --experimental-vm-modules $( [ -f ./node_modules/.bin/jest ] && echo ./node_modules/.bin/jest || which jest ) test/unit",
@@ -30687,9 +30688,10 @@ var MODEL_LIST = {
3068730688
"gpt-4o-mini-2024-07-18"
3068830689
],
3068930690
anthropic: [
30690-
"claude-3-haiku-20240307",
30691+
"claude-3-5-sonnet-20240620",
30692+
"claude-3-opus-20240229",
3069130693
"claude-3-sonnet-20240229",
30692-
"claude-3-opus-20240229"
30694+
"claude-3-haiku-20240307"
3069330695
],
3069430696
gemini: [
3069530697
"gemini-1.5-flash",

out/github-action.cjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49498,9 +49498,10 @@ var MODEL_LIST = {
4949849498
"gpt-4o-mini-2024-07-18"
4949949499
],
4950049500
anthropic: [
49501-
"claude-3-haiku-20240307",
49501+
"claude-3-5-sonnet-20240620",
49502+
"claude-3-opus-20240229",
4950249503
"claude-3-sonnet-20240229",
49503-
"claude-3-opus-20240229"
49504+
"claude-3-haiku-20240307"
4950449505
],
4950549506
gemini: [
4950649507
"gemini-1.5-flash",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
"dev:gemini": "OCO_AI_PROVIDER='gemini' ts-node ./src/cli.ts",
4747
"build": "rimraf out && node esbuild.config.js",
4848
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
49-
"deploy": "npm version patch && npm run build:push && git push --tags && npm publish --tag latest",
49+
"deploy": "npm run build:push && git push --tags && npm publish --tag latest",
50+
"deploy:patch": "npm version patch && npm run deploy",
5051
"lint": "eslint src --ext ts && tsc --noEmit",
5152
"format": "prettier --write src",
5253
"test": "node --no-warnings --experimental-vm-modules $( [ -f ./node_modules/.bin/jest ] && echo ./node_modules/.bin/jest || which jest ) test/unit",

0 commit comments

Comments
 (0)