-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
82 lines (79 loc) · 1.89 KB
/
rollup.config.js
File metadata and controls
82 lines (79 loc) · 1.89 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import typescript from '@rollup/plugin-typescript';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import dts from 'rollup-plugin-dts';
import { defineConfig } from 'rollup';
import { readFileSync } from 'fs';
import postcss from 'rollup-plugin-postcss';
const pkg = JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf8'));
const external = [
'react',
'react-dom',
'react/jsx-runtime',
...Object.keys(pkg.peerDependencies || {})
];
export default defineConfig([
{
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
sourcemap: true,
exports: 'named',
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'react/jsx-runtime': 'jsxRuntime'
}
},
{
file: pkg.module,
format: 'esm',
sourcemap: true,
exports: 'named',
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'react/jsx-runtime': 'jsxRuntime'
}
},
],
plugins: [
resolve(),
commonjs(),
postcss({
extensions: ['.css'],
minimize: true,
modules: {
generateScopedName: '[name]__[local]___[hash:base64:5]',
localsConvention: 'camelCase'
},
inject: {
insertAt: 'top'
},
extract: false,
use: ['sass'],
autoModules: true,
namedExports: true
}),
typescript({
tsconfig: './tsconfig.json',
exclude: ['**/__tests__/**', '**/*.test.ts', '**/*.test.tsx']
}),
],
external
},
{
input: 'dist/types/src/index.d.ts',
output: [{ file: 'dist/index.d.ts', format: 'esm' }],
plugins: [
postcss({
inject: false,
extract: false
}),
dts()
],
external: [...external, /\.css$/]
},
]);