From 28f94b167ab6f7a3dac5c38400dc26d8334c90c1 Mon Sep 17 00:00:00 2001 From: linzhe Date: Tue, 9 Dec 2025 23:15:09 +0800 Subject: [PATCH] chore: update warning message for missing temp dts files --- rollup.dts.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.dts.config.js b/rollup.dts.config.js index d9af98f1306..516fe6ed5e6 100644 --- a/rollup.dts.config.js +++ b/rollup.dts.config.js @@ -7,7 +7,7 @@ import dts from 'rollup-plugin-dts' if (!existsSync('temp/packages')) { console.warn( - 'no temp dts files found. run `tsc -p tsconfig.build-browser.json && tsc -p tsconfig.build-node.json` first.', + 'no temp dts files found. run `tsc -p tsconfig.build.json --noCheck` first.', ) process.exit(1) }