Skip to content

Commit febcd73

Browse files
committed
refactor: display config loader
1 parent 4ccb2d6 commit febcd73

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/config/file.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,10 @@ export async function loadConfigFile(
112112
let file: string | undefined
113113
if (result) {
114114
;({ config: exported, source: file } = result)
115-
globalLogger.info(`Using tsdown config: ${underline(file)}`)
115+
globalLogger.info(
116+
`config file: ${underline(file)}`,
117+
loader === 'native' ? '' : `(${loader})`,
118+
)
116119

117120
exported = await exported
118121
if (typeof exported === 'function') {

0 commit comments

Comments
 (0)