10 lines
		
	
	
		
			275 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			275 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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();
 | |
|   });
 | |
| };
 |