fix(core): update

This commit is contained in:
2024-06-21 19:48:43 +02:00
commit 84a10a89de
109 changed files with 11639 additions and 0 deletions

9
ts/index.ts Normal file
View File

@@ -0,0 +1,9 @@
export const runCli = async () => {
const early = await import('@push.rocks/early');
early.start('gitzone');
const plugins = await import('./plugins.js');
const gitzoneCli = await import('./gitzone.cli.js');
early.stop().then(() => {
gitzoneCli.run();
});
};