Browse Source
chore(build): update warning message for missing `temp/packages` (#11120)
pull/11135/head
ericgll
12 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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) |
|
|
|
} |
|
|
|