瀏覽代碼

chore(build): update warning message for missing `temp/packages` (#11120)

ericgll 1 年之前
父節點
當前提交
73fb15c236
共有 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.json` first.',
+    'no temp dts files found. run `tsc -p tsconfig.build-browser.json && tsc -p tsconfig.build-node.json` first.',
   )
   process.exit(1)
 }