lib/octicons_styled/rollup.config.js (35 lines of code) (raw):
import babel from 'rollup-plugin-babel'
import commonjs from 'rollup-plugin-commonjs'
// eslint-disable-next-line import/no-namespace
import * as octicons from '../octicons_react/dist/index.esm'
const icons = Object.keys(octicons).filter(name => name !== 'default')
export default [
{
input: 'src/__generated__/index.js',
plugins: [
babel({
babelrc: false,
presets: [['env', {modules: false}], 'stage-0', 'react']
}),
commonjs()
],
output: {
file: 'dist/index.umd.js',
format: 'umd',
name: 'reocticons'
}
},
...icons.map(name => ({
input: `src/__generated__/icons/${name}.js`,
plugins: [
babel({
babelrc: false,
presets: [['env', {modules: false}], 'stage-0', 'react']
}),
commonjs()
],
output: {
file: `dist/icons/${name}.js`,
format: 'esm'
}
}))
]