mirror of
				https://github.com/mdbootstrap/mdb-ui-kit.git
				synced 2025-11-04 09:57:36 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			242 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			242 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import config from './rollup.config.js';
 | 
						|
import extend from 'extend'
 | 
						|
import babel from 'rollup-plugin-babel';
 | 
						|
 | 
						|
export default extend(true, config, {
 | 
						|
  plugins: [babel()],
 | 
						|
  format: 'umd',
 | 
						|
  dest: 'dist/js/bootstrap-material-design.umd.js'
 | 
						|
})
 |