tsbundle/ts/index.ts
2022-03-16 00:21:05 +01:00

14 lines
389 B
TypeScript

import * as early from '@pushrocks/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_rollup/htmlhandler.js';
export { runCli };