From edbd5ec81b8d6a0431e1eae41471a2f20dd8cbf7 Mon Sep 17 00:00:00 2001 From: linzhe <40790268+linzhe141@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:22:24 +0800 Subject: [PATCH] chore: update warning message for missing temp dts files (#14186) --- 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 d9af98f13..516fe6ed5 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) } -- 2.47.3