fix: 修复plane匪夷所思的重复生成问题
This commit is contained in:
@@ -7,4 +7,6 @@ export default defineConfig({
|
|||||||
dts: false,
|
dts: false,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: false,
|
sourcemap: false,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "turbo run build",
|
"build": "turbo run build",
|
||||||
"dev": "turbo run dev --concurrency=18",
|
"dev": "turbo run dev --concurrency=16",
|
||||||
"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",
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: false,
|
sourcemap: false,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: false,
|
sourcemap: false,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -13,4 +13,6 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -47,4 +47,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: false,
|
sourcemap: false,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ export default defineConfig({
|
|||||||
dts: true,
|
dts: true,
|
||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -9,4 +9,6 @@ export default defineConfig({
|
|||||||
clean: true,
|
clean: true,
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
target: "esnext",
|
target: "esnext",
|
||||||
|
watch: true,
|
||||||
|
ignoreWatch: ["dist/**", "node_modules/**", ".turbo/**"],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -31,7 +31,6 @@
|
|||||||
"outputs": ["storybook-static/**"]
|
"outputs": ["storybook-static/**"]
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"dependsOn": ["^build"],
|
|
||||||
"cache": false,
|
"cache": false,
|
||||||
"persistent": true
|
"persistent": true
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user