From: ericgll <134293035+ericgll0104@users.noreply.github.com> Date: Fri, 14 Jun 2024 08:12:47 +0000 (+0800) Subject: chore(build): update warning message for missing `temp/packages` (#11120) X-Git-Tag: v3.4.28~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73fb15c236650cd8482017f66beeb2939fa1954f;p=thirdparty%2Fvuejs%2Fcore.git chore(build): update warning message for missing `temp/packages` (#11120) --- diff --git a/rollup.dts.config.js b/rollup.dts.config.js index d715af4a4f..d9af98f130 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.json` first.', + 'no temp dts files found. run `tsc -p tsconfig.build-browser.json && tsc -p tsconfig.build-node.json` first.', ) process.exit(1) }