mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			243 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			243 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { writeFile } from 'node:fs/promises';
 | |
| import locales from '../../../locales/index.js';
 | |
| 
 | |
| await writeFile(
 | |
| 	new URL('locale.ts', import.meta.url),
 | |
| 	`export default ${JSON.stringify(locales['ja-JP'], undefined, 2)} as const;`,
 | |
| 	'utf8',
 | |
| )
 |