移除烦人的版本自动生成,简化提交流程

This commit is contained in:
katelya
2025-09-01 20:38:46 +08:00
parent 8b2ca1e520
commit af5b2f8e02
3 changed files with 87 additions and 10 deletions
+3 -3
View File
@@ -3,11 +3,11 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm gen:runtime && pnpm gen:manifest && next dev -H 0.0.0.0",
"build": "pnpm gen:runtime && pnpm gen:manifest && next build",
"dev": "npm run gen:runtime && npm run gen:manifest && next dev -H 0.0.0.0",
"build": "npm run gen:runtime && npm run gen:manifest && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"lint:fix": "eslint src --fix && npm run format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",