* 🐛 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.
This commit is contained in:
di-sukharev
2023-03-06 19:08:37 +08:00
parent 9c67a3774f
commit 5282734583

View File

@@ -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": {