-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
126 lines (116 loc) · 2.77 KB
/
rollup.config.mjs
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import fs from 'fs'
import typescript from 'rollup-plugin-typescript2'
import image from '@rollup/plugin-image'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import svgr from '@svgr/rollup'
import json from '@rollup/plugin-json'
import sizes from 'rollup-plugin-sizes'
import alias from '@rollup/plugin-alias';
import { getFiles } from './scripts/buildUtils.mjs'
import { getPostCss } from './utils/getPostCssPlugin.mjs'
const pkg = require('./package.json')
const extensions = ['.js', '.ts', '.jsx', '.tsx']
const excludeExtensions = [
'test.js',
'test.ts',
'test.jsx',
'test.tsx',
'stories.js',
'stories.ts',
'stories.jsx',
'stories.tsx',
'd.ts'
]
const getSassBuildPlugins = (source, plugins = [], withoutExtract = false) =>
fs.readdirSync(source, { withFileTypes: true }).reduce((acc, dirent) => {
if (dirent.isDirectory()) {
const path = `${source}/${dirent.name}`
const stylesSrcModule = `${path}/styles.module.scss`
if (fs.existsSync(stylesSrcModule)) {
acc.push(
getPostCss(
stylesSrcModule,
withoutExtract ? null : `${path.split('src/')[1]}/styles.css`
)
)
}
getSassBuildPlugins(path, acc, true)
}
return acc
}, plugins)
const external = [
...Object.keys(pkg.devDependencies),
...Object.keys(pkg.peerDependencies)
]
const ALIAS_COMPONENT_ENTRIES = [
{ find: '../Button', replacement: 'tele2-ui-kit/Button' },
]
const plugins = [
json(),
nodeResolve(),
commonjs(),
typescript({
tsconfigOverride: {
compilerOptions: {
declaration: true,
declarationDir: 'lib'
},
exclude: [
'lib',
'src/_internal/__mocks__',
'src/**/*.test.ts',
'src/**/*.test.tsx',
'src/**/*.stories.ts',
'src/**/*.stories.tsx',
'src/**/*.stories.tsx'
]
}
}),
image(),
svgr(),
...getSassBuildPlugins('src', [
getPostCss('./src/styles.module.scss', 'styles.css', true)
]),
sizes(),
alias(ALIAS_COMPONENT_ENTRIES)
]
export default [
{
input: ['src/index.ts'],
output: [
{
file: pkg.module,
format: 'esm',
sourcemap: true,
exports: 'named',
banner: "'use client';"
},
{
file: pkg.main,
format: 'cjs',
sourcemap: true,
exports: 'named',
banner: "'use client';"
}
],
plugins,
external
},
{
input: getFiles('src', extensions, excludeExtensions),
output: {
dir: 'lib',
format: 'esm',
preserveModules: true,
preserveModulesRoot: 'src',
sourcemap: false,
banner: "'use client';",
globals: {
react: 'React'
}
},
plugins,
external
}
]