UNPKG

365 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
10if (process.env.CLI_CALL) {
11 runCli();
12}
13
14// lets make this usable programmatically
15export * from './tsbundle.class.tsbundle';