This commit is contained in:
di-sukharev
2023-05-26 12:51:55 +08:00
parent 6490532818
commit 12f7e7eaf9
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -41,8 +41,9 @@
"start": "node ./out/cli.cjs",
"dev": "ts-node ./src/cli.ts",
"build": "rimraf out && node esbuild.config.js",
"deploy": "npm run build:push && npm version patch && git push && git push --tags && npm publish --tag latest",
"deploy": "npm run build:push && npm version patch && npm run postversion",
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
"postversion": "npm run build && git add . && git commit --amend --no-edit && git push && git push --tags && npm publish --tag latest",
"lint": "eslint src --ext ts && tsc --noEmit",
"format": "prettier --write src"
},