fix(core): Add logging for found publish modules

This commit is contained in:
2024-10-28 01:27:00 +01:00
parent 4ee31f85ab
commit 9a89b63cf9
4 changed files with 10 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import { TsPublish } from './classes.tspublish.js';
export * from './classes.tspublish.js'
export const runCli = async () => {
console.log('Starting tspublish...');
const tspublish = new TsPublish();
await tspublish.publish(paths.cwd);
}