mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
24 lines
464 B
JavaScript
24 lines
464 B
JavaScript
|
import babel from 'rollup-plugin-babel';
|
||
|
import pkg from './package.json';
|
||
|
|
||
|
export default [
|
||
|
// browser-friendly UMD build
|
||
|
{
|
||
|
input: 'src/index.js',
|
||
|
output: [
|
||
|
{
|
||
|
name: 'Diff',
|
||
|
file: pkg.browser,
|
||
|
format: 'umd'
|
||
|
},
|
||
|
{ file: pkg.module, format: 'es' }
|
||
|
],
|
||
|
plugins: [
|
||
|
babel({
|
||
|
babelrc: false,
|
||
|
presets: [['@babel/preset-env', { targets: {ie: '11'}, modules: false }]],
|
||
|
})
|
||
|
]
|
||
|
}
|
||
|
];
|