-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
61 lines (59 loc) · 1.78 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import babel from '@rollup/plugin-babel'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import summary from 'rollup-plugin-summary'
import { terser } from 'rollup-plugin-terser'
import postcss from 'rollup-plugin-postcss'
import autoprefixer from 'autoprefixer'
import pkg from './package.json'
const external = Object.keys(pkg.dependencies).concat(Object.keys(pkg.peerDependencies))
const babelConfig = ({ useESModules }) => ({
babelHelpers: 'runtime',
exclude: ['node_modules/**', 'stories/**'],
plugins: [['@babel/transform-runtime', { useESModules }], 'transform-react-remove-prop-types']
})
const globals = { ...pkg.dependencies, ...pkg.peerDependencies }
export default [
{
input: 'less/crane.less',
output: [{ file: 'dist/crane.min.css' }],
plugins: [
postcss({
extensions: ['.less'],
extract: true,
minimize: true,
plugins: [autoprefixer]
})
]
},
{
input: pkg.source,
output: [{ file: pkg.browser, format: 'umd', name: 'ReactCrane', globals }],
plugins: [
resolve(),
babel(babelConfig({ useESModules: true })),
commonjs(),
terser(),
summary()
],
external
},
{
input: pkg.source,
output: [{ file: 'dist/crane.js', format: 'umd', name: 'ReactCrane', globals }],
plugins: [resolve(), babel(babelConfig({ useESModules: true })), commonjs(), summary()],
external
},
{
input: pkg.source,
output: [{ file: pkg.main, format: 'cjs' }],
plugins: [resolve(), babel(babelConfig({ useESModules: false })), summary()],
external
},
{
input: pkg.source,
output: [{ file: pkg.module, format: 'esm' }],
plugins: [resolve(), babel(babelConfig({ useESModules: true })), summary()],
external
}
]