tsbundle/ts/index.ts

14 lines
382 B
TypeScript
Raw Normal View History

2023-08-26 13:08:23 +00:00
import * as early from '@push.rocks/early';
2019-05-06 12:00:21 +00:00
early.start('tsbundle');
2019-06-16 15:02:38 +00:00
// lets import all plugins beforehand
2022-03-15 23:21:05 +00:00
import './plugins.js';
2019-06-16 15:02:38 +00:00
2022-03-14 15:32:12 +00:00
import { logger } from './tsbundle.logging.js';
import { runCli } from './tsbundle.cli.js';
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
2022-03-14 15:32:12 +00:00
export * from './tsbundle.class.tsbundle.js';
2022-03-18 14:46:11 +00:00
export * from './mod_html/index.js';
2020-03-14 22:41:25 +00:00
export { runCli };