Compare commits

..

5 Commits

Author SHA1 Message Date
di-sukharev
c573edea97 0.0.7 2023-03-06 19:08:57 +08:00
di-sukharev
5282734583 * 🐛 fix(package.json): remove npm publish command from publish script
The npm publish command has been removed from the publish script. This is because the command should be run manually after bumping the version number.
2023-03-06 19:08:37 +08:00
di-sukharev
9c67a3774f 0.0.6 2023-03-06 19:08:01 +08:00
di-sukharev
deeb7cdf97 0.0.5 2023-03-06 19:07:58 +08:00
di-sukharev
fe819f0814 0.0.4 2023-03-06 19:07:56 +08:00
2 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "open-commit",
"version": "0.0.3",
"version": "0.0.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "open-commit",
"version": "0.0.3",
"version": "0.0.7",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.6.1",

View File

@@ -1,6 +1,6 @@
{
"name": "opencommit",
"version": "0.0.3",
"version": "0.0.7",
"description": "AI generates conventional commits with mind-blowing accuracy.",
"keywords": [
"git",
@@ -37,7 +37,7 @@
"start": "node ./out/cli.cjs",
"dev": "ts-node ./src/cli.ts",
"build": "rimraf out && esbuild ./src/cli.ts --bundle --outfile=out/cli.cjs --format=cjs --platform=node",
"publish": "npm version patch && npm publish",
"publish": "npm version patch",
"lint": "eslint src --ext ts && tsc --noEmit"
},
"devDependencies": {