tsbundle/ts/index.ts

16 lines
383 B
TypeScript
Raw Normal View History

2019-05-06 12:00:21 +00:00
import * as early from '@pushrocks/early';
early.start('tsbundle');
2019-06-16 15:02:38 +00:00
// lets import all plugins beforehand
import './tsbundle.plugins';
2019-05-08 09:05:13 +00:00
import { logger } from './tsbundle.logging';
2019-06-16 15:02:38 +00:00
import { runCli } from './tsbundle.cli';
2019-05-06 12:00:21 +00:00
early.stop();
2019-04-20 17:59:33 +00:00
2019-07-19 08:52:27 +00:00
// lets make this usable programmatically
export * from './tsbundle.class.tsbundle';
2019-10-12 13:56:44 +00:00
export * from './tsbundle.htmlhandler';
2019-10-12 13:55:37 +00:00
export {
runCli
};