tsbundle/ts/index.ts
2020-03-14 22:41:25 +00:00

14 lines
381 B
TypeScript

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