forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
44 lines (42 loc) · 1.24 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 { isAbsolute } from 'path';
import linaria from '@linaria/rollup';
import postcss from 'rollup-plugin-postcss';
import { babel } from '@rollup/plugin-babel';
import nodeResolve from '@rollup/plugin-node-resolve';
import pkg from './package.json';
const extensions = ['.ts', '.tsx'];
export default {
input: './src/index.ts',
output: [{
file: './lib/bundle.js',
format: 'es',
preferConst: true,
sourcemap: true
}, {
file: './lib/bundle.cjs',
format: 'cjs',
preferConst: true,
sourcemap: true,
interop: false
}],
external: id => !id.startsWith('.') && !isAbsolute(id),
plugins: [
linaria({
classNameSlug(hash) {
// We add the package version as suffix to avoid style conflicts
// between multiple versions of RDG on the same page.
return `${hash}${pkg.version.replaceAll('.', '')}`;
}
}),
postcss({ minimize: true }),
babel({
babelHelpers: 'runtime',
extensions,
// remove all comments except terser annotations
// https://github.com/terser/terser#annotations
// https://babeljs.io/docs/en/options#shouldprintcomment
shouldPrintComment: comment => /^[@#]__.+__$/.test(comment)
}),
nodeResolve({ extensions })
]
};