mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-13 05:07:01 +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'
|
||
|
})
|