1 Commits
dev ... master

Author SHA1 Message Date
chuan
e463e6f7eb fix: 修复plane匪夷所思的重复生成问题
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
2025-11-11 19:09:46 +08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo run build",
"dev": "turbo run dev --concurrency=16", "dev": "turbo run dev --concurrency=18",
"start": "turbo run start", "start": "turbo run start",
"clean": "turbo run clean && rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist", "clean": "turbo run clean && rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
"fix": "turbo run fix", "fix": "turbo run fix",

View File

@@ -31,6 +31,7 @@
"outputs": ["storybook-static/**"] "outputs": ["storybook-static/**"]
}, },
"dev": { "dev": {
"dependsOn": ["^build"],
"cache": false, "cache": false,
"persistent": true "persistent": true
}, },