2023-08-26 15:08:23 +02:00
|
|
|
import * as early from '@push.rocks/early';
|
2019-05-06 14:00:21 +02:00
|
|
|
early.start('tsbundle');
|
2019-06-16 17:02:38 +02:00
|
|
|
// lets import all plugins beforehand
|
2022-03-16 00:21:05 +01:00
|
|
|
import './plugins.js';
|
2019-06-16 17:02:38 +02:00
|
|
|
|
2022-03-14 16:32:12 +01:00
|
|
|
import { logger } from './tsbundle.logging.js';
|
|
|
|
import { runCli } from './tsbundle.cli.js';
|
2019-05-06 14:00:21 +02:00
|
|
|
early.stop();
|
2019-04-20 19:59:33 +02:00
|
|
|
|
2019-07-19 10:52:27 +02:00
|
|
|
// lets make this usable programmatically
|
2022-03-14 16:32:12 +01:00
|
|
|
export * from './tsbundle.class.tsbundle.js';
|
2025-01-29 13:18:04 +01:00
|
|
|
export * from './mod_assets/index.js';
|
2022-03-18 15:46:11 +01:00
|
|
|
export * from './mod_html/index.js';
|
2020-03-14 22:41:25 +00:00
|
|
|
export { runCli };
|