UNPKG

383 BPlain TextView Raw
1import * as early from '@pushrocks/early';
2early.start('tsbundle');
3// lets import all plugins beforehand
4import './tsbundle.plugins';
5
6import { logger } from './tsbundle.logging';
7import { runCli } from './tsbundle.cli';
8early.stop();
9
10// lets make this usable programmatically
11export * from './tsbundle.class.tsbundle';
12export * from './tsbundle.htmlhandler';
13export {
14 runCli
15};