12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import * as paths from './paths.js';
|
|
import { TsPublish } from './classes.tspublish.js';
|
|
import { logStart } from './logging.js';
|
|
|
|
export * from './classes.tspublish.js';
|
|
|
|
export const runCli = async () => {
|
|
logStart('tspublish');
|
|
const tspublish = new TsPublish();
|
|
await tspublish.publish(paths.cwd);
|
|
};
|