Skip to content

Commit 12f7e7e

Browse files
committed
build
1 parent 6490532 commit 12f7e7e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

out/cli.cjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16272,7 +16272,7 @@ function G3(t, e2) {
1627216272
// package.json
1627316273
var package_default = {
1627416274
name: "opencommit",
16275-
version: "2.2.2",
16275+
version: "2.2.3",
1627616276
description: "Auto-generate impressive commits in 1 second. Killing lame commits with AI \u{1F92F}\u{1F52B}",
1627716277
keywords: [
1627816278
"git",
@@ -16313,8 +16313,9 @@ var package_default = {
1631316313
start: "node ./out/cli.cjs",
1631416314
dev: "ts-node ./src/cli.ts",
1631516315
build: "rimraf out && node esbuild.config.js",
16316-
deploy: "npm run build:push && npm version patch && git push && git push --tags && npm publish --tag latest",
16316+
deploy: "npm run build:push && npm version patch && npm run postversion",
1631716317
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
16318+
postversion: "npm run build && git add . && git commit --amend --no-edit && git push && git push --tags && npm publish --tag latest",
1631816319
lint: "eslint src --ext ts && tsc --noEmit",
1631916320
format: "prettier --write src"
1632016321
},

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@
4141
"start": "node ./out/cli.cjs",
4242
"dev": "ts-node ./src/cli.ts",
4343
"build": "rimraf out && node esbuild.config.js",
44-
"deploy": "npm run build:push && npm version patch && git push && git push --tags && npm publish --tag latest",
44+
"deploy": "npm run build:push && npm version patch && npm run postversion",
4545
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
46+
"postversion": "npm run build && git add . && git commit --amend --no-edit && git push && git push --tags && npm publish --tag latest",
4647
"lint": "eslint src --ext ts && tsc --noEmit",
4748
"format": "prettier --write src"
4849
},

0 commit comments

Comments
 (0)