tsbundle/ts/index.ts
2023-08-26 15:08:23 +02:00

14 lines
382 B
TypeScript

import * as early from '@push.rocks/early';
early.start('tsbundle');
// lets import all plugins beforehand
import './plugins.js';
import { logger } from './tsbundle.logging.js';
import { runCli } from './tsbundle.cli.js';
early.stop();
// lets make this usable programmatically
export * from './tsbundle.class.tsbundle.js';
export * from './mod_html/index.js';
export { runCli };