mirror of
				https://github.com/zen-browser/desktop.git
				synced 2025-10-26 12:27:50 +00:00 
			
		
		
		
	 3fbe8c0b6c
			
		
	
	3fbe8c0b6c
	
	
	
		
			
			Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: mr. m <91018726+mauro-balades@users.noreply.github.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const fs = require('fs');
 | |
| const MJS_FILES = ['src/zen/split-view/ZenViewSplitter.ts'];
 | |
| 
 | |
| for (const file of MJS_FILES) {
 | |
|   const code = fs.readFileSync(file, 'utf8');
 | |
|   require('@babel/core').transformSync(code, {
 | |
|     presets: ['@babel/preset-typescript'],
 | |
|     filename: file,
 | |
|   });
 | |
| }
 |