-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
44 lines (41 loc) · 1.07 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
import path from 'path'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import babel from '@rollup/plugin-babel'
import postcss from 'rollup-plugin-postcss'
import typescript from 'rollup-plugin-typescript2'
import { terser } from 'rollup-plugin-terser'
import cssnao from 'cssnano'
import pack from './package.json'
const production = !process.env.ROLLUP_WATCH
export default [
{
input: path.join(__dirname, 'components/index.ts'),
output: [
{
file: 'dist/index.js',
format: 'cjs',
name: pack.name
}
],
plugins: [
resolve(),
commonjs({ include: /node_modules/ }),
postcss({
plugins: [cssnao()],
extensions: ['.css', '.less'],
extract: 'index.css'
}),
babel({
exclude: '/node_modules/**',
babelHelpers: 'runtime',
plugins: ['@babel/plugin-transform-runtime']
}),
typescript({
tsconfig: './tsconfig.json'
}),
production && terser()
],
external: ['react', 'react-dom']
}
]