Просмотр исходного кода

chore: update warning message for missing temp dts files (#14186)

linzhe 4 месяцев назад
Родитель
Сommit
edbd5ec81b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      rollup.dts.config.js

+ 1 - 1
rollup.dts.config.js

@@ -7,7 +7,7 @@ import dts from 'rollup-plugin-dts'
 
 
 if (!existsSync('temp/packages')) {
 if (!existsSync('temp/packages')) {
   console.warn(
   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)
   process.exit(1)
 }
 }