From 765e9884ddbad1e889bf30c178f125f798036e6c Mon Sep 17 00:00:00 2001 From: di-sukharev Date: Sun, 3 Sep 2023 14:10:56 +0800 Subject: [PATCH] chore(package.json): reorder scripts to improve readability and maintainability --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b123833..bda4e2b 100644 --- a/package.json +++ b/package.json @@ -41,8 +41,8 @@ "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 --tags && git push && npm publish --tag latest", "build:push": "npm run build && git add . && git commit -m 'build' && git push", + "deploy": "npm run build:push && npm version patch && git push --tags && git push && npm publish --tag latest", "lint": "eslint src --ext ts && tsc --noEmit", "format": "prettier --write src" }, @@ -78,4 +78,4 @@ "inquirer": "^9.1.4", "openai": "^3.2.1" } -} \ No newline at end of file +}