mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
|
import fs from 'fs';
|
||
|
import babel from 'rollup-plugin-babel';
|
||
|
|
||
|
const babelOptions = JSON.parse(fs.readFileSync('./.babelrc'));
|
||
|
|
||
|
export default {
|
||
|
format: 'iife',
|
||
|
plugins: [
|
||
|
babel(Object.assign(babelOptions, { babelrc: false })),
|
||
|
],
|
||
|
};
|