-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
49 lines (45 loc) · 1.28 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
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import typescript from 'rollup-plugin-typescript2'
import external from 'rollup-plugin-peer-deps-external';
import copy from 'rollup-plugin-copy';
import execute from 'rollup-plugin-execute';
import svgr from "@svgr/rollup";
const packageJson = require('./package.json');
const globals = {
react: 'React',
'react-dom': 'ReactDOM',
'@interopio/react-hooks': "interopio-hooks"
};
export default [
{
input: 'src/index.tsx',
plugins: [
resolve(),
external(),
commonjs(),
typescript(),
svgr({ svgo: false }),
copy({
targets: [
{ src: './assets/css/*', dest: 'dist/styles' },
]
}),
execute('npm run bundle:css')
],
output: [
{
file: packageJson.module,
format: 'esm',
sourcemap: true
},
{
file: packageJson.main,
name: 'groups-ui-react',
format: 'umd',
sourcemap: true,
globals,
}
],
}
]