mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
23 lines
504 B
JavaScript
23 lines
504 B
JavaScript
import replace from 'rollup-plugin-replace';
|
|
import commonjs from 'rollup-plugin-commonjs';
|
|
import resolve from 'rollup-plugin-node-resolve';
|
|
import babel from 'rollup-plugin-babel';
|
|
|
|
export default {
|
|
input: 'index.js',
|
|
output: {
|
|
file: 'dist/bundle.js',
|
|
format: 'iife'
|
|
},
|
|
plugins: [
|
|
replace({
|
|
'process.env.NODE_ENV': JSON.stringify('production')
|
|
}),
|
|
commonjs(),
|
|
resolve(),
|
|
babel({
|
|
exclude: 'node_modules/**' // only transpile our source code
|
|
})
|
|
]
|
|
};
|