tspublish/ts/index.ts

10 lines
243 B
TypeScript

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);
}