mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const fs = require('fs');
 | 
						|
 | 
						|
if (fs.existsSync('./built')) {
 | 
						|
	require('./built').default();
 | 
						|
} else {
 | 
						|
	console.log('Built code is not found. Probably an error occurred during a build or you just forgot to build.');
 | 
						|
}
 |