diff --git a/src/utils.ts b/src/utils.ts index b5e21db..ab24c10 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -47,7 +47,10 @@ export function readVersionFromFile( const path = join(cwd, file); const base = basename(file); - if (!existsSync(path)) return; + if (!existsSync(path)) { + warning(`File ${path} not found`); + continue; + } const reader = FILE_VERSION_READERS[base] ?? (() => undefined);