fix: 修复plane匪夷所思的重复生成问题

This commit is contained in:
chuan
2025-11-11 20:43:22 +08:00
parent 0a7194daf3
commit 24ebea47dc
14 changed files with 25 additions and 2 deletions

View File

@@ -7,4 +7,6 @@ export default defineConfig({
dts: false,
clean: true,
sourcemap: false,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

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

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: false,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: false,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -13,4 +13,6 @@ export default defineConfig({
},
dts: true,
clean: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -47,4 +47,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: false,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -8,4 +8,6 @@ export default defineConfig({
dts: true,
clean: true,
sourcemap: true,
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

@@ -9,4 +9,6 @@ export default defineConfig({
clean: true,
sourcemap: true,
target: "esnext",
watch: true,
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
});

View File

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