【需求 17679】 fix: 区分测试和正式
Showing
| ... | @@ -10,12 +10,14 @@ | ... | @@ -10,12 +10,14 @@ |
| "dev": "vite", | "dev": "vite", | ||
| "build": "run-p type-check \"build-only {@}\" --", | "build": "run-p type-check \"build-only {@}\" --", | ||
| "preview": "vite preview", | "preview": "vite preview", | ||
| "build-only": "vite build", | |||
| "type-check": "vue-tsc --build", | "type-check": "vue-tsc --build", | ||
| "lint": "eslint . --fix --cache", | "lint": "eslint . --fix --cache", | ||
| "format": "prettier --write src/", | "format": "prettier --write src/", | ||
| "build-only": "vite build", | |||
| "build:test": "nvm use 20 && vite build --mode test", | |||
| "deploy:test": "node deploy/deploytest.js", | "deploy:test": "node deploy/deploytest.js", | ||
| "build:test": "nvm use 20 && vite build --mode test" | "build:prod": "nvm use 20 && vite build --mode production", | ||
| "deploy:prod": "node deploy/deployprod.js" | |||
| }, | }, | ||
| "dependencies": { | "dependencies": { | ||
| "@element-plus/icons-vue": "^2.3.2", | "@element-plus/icons-vue": "^2.3.2", | ||
| ... | ... |
Please
register
or
sign in
to comment