소스 검색

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

linzhe 4 달 전
부모
커밋
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')) {
   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)
 }