feat(core): Add runCli function to execute TsPublish process

This commit is contained in:
2024-10-21 12:57:54 +02:00
parent c0d81402fb
commit 4f555a2fe9
4 changed files with 47 additions and 16 deletions

View File

@@ -1 +1,9 @@
export * from './classes.tspublish.js'
import * as paths from './paths.js';
import { TsPublish } from './classes.tspublish.js';
export * from './classes.tspublish.js'
export const runCli = async () => {
const tspublish = new TsPublish();
await tspublish.publish(paths.cwd);
}