mirror of
				https://github.com/ionic-team/ionic-framework.git
				synced 2025-11-04 13:17:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const fs = require('fs-extra');
 | 
						|
const path = require('path');
 | 
						|
 | 
						|
function copyCSS() {
 | 
						|
  const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
 | 
						|
  const dst = path.join(__dirname, '..', 'css');
 | 
						|
 | 
						|
  fs.removeSync(dst);
 | 
						|
  fs.copySync(src, dst);
 | 
						|
}
 | 
						|
 | 
						|
function main() {
 | 
						|
  copyCSS();
 | 
						|
}
 | 
						|
 | 
						|
main();
 |