tspublish/ts/index.ts

11 lines
285 B
TypeScript

import * as paths from './paths.js';
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);
};