-
Notifications
You must be signed in to change notification settings - Fork 44
/
rollup.config.js
217 lines (198 loc) · 5.78 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import { ScriptTarget } from 'typescript';
import path from 'path';
import multiInput from 'rollup-plugin-multi-input';
import postcss, { addCssImports, generateClassNameHash } from '@alfalab/rollup-plugin-postcss';
import typescript from '@wessberg/rollup-plugin-ts';
import copy from 'rollup-plugin-copy';
import json from '@rollup/plugin-json';
import {
coreComponentsRootPackageResolver,
coreComponentsResolver,
} from './tools/rollup/core-components-resolver';
import ignoreCss from './tools/rollup/ignore-css';
import processCss from './tools/rollup/process-css';
import coreComponentsTypingsResolver from './tools/rollup/core-components-typings-resolver';
import createPackageJson from './tools/rollup/create-package-json';
import { compiledDarkmodeGenerator } from './tools/rollup/compiled-darkmode-generator';
const currentPackageDir = process.cwd();
const currentPkg = path.join(currentPackageDir, 'package.json');
const rootPkg = require(path.resolve(currentPackageDir, '../../package.json'))
const pkg = require(currentPkg);
const currentComponentName = pkg.name.replace('@alfalab/core-components-', '');
const baseConfig = {
input: [
'src/**/*.{ts,tsx}',
'!src/**/*.{test,stories}.{ts,tsx}',
'!src/**/*.mdx',
'!src/**/*.d.ts',
],
external: [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.peerDependencies || {})],
};
const multiInputPlugin = multiInput();
const copyPlugin = dest =>
copy({
flatten: false,
targets: [{ src: ['src/**/*.{png,svg,jpg,jpeg}', '!**/__image_snapshots__/**'], dest }],
});
const postcssPlugin = postcss({
modules: {
generateScopedName: function(name, fileName) {
const relativeFileName = path.relative(currentPackageDir, fileName);
const hash = generateClassNameHash(pkg.name, rootPkg.version, relativeFileName);
return `${currentComponentName}__${name}_${hash}`;
},
},
extract: true,
separateCssFiles: true,
packageName: pkg.name,
packageVersion: pkg.version,
});
/**
* Сборка ES5 с commonjs модулями.
*/
const es5 = {
...baseConfig,
output: [
{
dir: 'dist',
format: 'cjs',
plugins: [addCssImports({ currentPackageDir })],
},
],
plugins: [
multiInputPlugin,
typescript({
tsconfig: resolvedConfig => ({
...resolvedConfig,
tsBuildInfoFile: 'tsconfig.tsbuildinfo',
}),
}),
json(),
postcssPlugin,
copyPlugin('dist'),
copy({
targets: [{ src: ['../../bin/send-stats.js'], dest: 'dist' }],
}),
compiledDarkmodeGenerator(`${currentPackageDir}/dist`),
],
};
/**
* Сборка ES2020 с esm модулями.
*/
const modern = {
...baseConfig,
output: [
{
dir: 'dist/modern',
format: 'esm',
plugins: [
addCssImports({ currentPackageDir }),
coreComponentsResolver({ importFrom: 'dist/modern' }),
],
},
],
plugins: [
multiInputPlugin,
typescript({
outDir: 'dist/modern',
tsconfig: resolvedConfig => ({
...resolvedConfig,
target: ScriptTarget.ES2020,
tsBuildInfoFile: 'tsconfig.tsbuildinfo',
}),
}),
json(),
postcssPlugin,
copyPlugin('dist/modern'),
],
};
/**
* Сборка ES5 с commonjs модулями.
* Css-модули поставляются как есть, не компилируются.
*/
const cssm = {
...baseConfig,
output: [
{
dir: 'dist/cssm',
format: 'cjs',
plugins: [coreComponentsResolver({ importFrom: 'dist/cssm' })],
},
],
plugins: [
multiInputPlugin,
ignoreCss(),
typescript({
outDir: 'dist/cssm',
tsconfig: resolvedConfig => ({
...resolvedConfig,
tsBuildInfoFile: 'tsconfig.tsbuildinfo',
}),
}),
json(),
processCss(),
copyPlugin('dist/cssm'),
],
};
/**
* Сборка ES5 с esm модулями.
*/
const esm = {
...baseConfig,
output: [
{
dir: 'dist/esm',
format: 'esm',
plugins: [
addCssImports({ currentPackageDir }),
coreComponentsResolver({ importFrom: 'dist/esm' }),
],
},
],
plugins: [
multiInputPlugin,
typescript({
outDir: 'dist/esm',
tsconfig: resolvedConfig => ({
...resolvedConfig,
tsBuildInfoFile: 'tsconfig.tsbuildinfo',
}),
}),
json(),
postcssPlugin,
copyPlugin('dist/esm'),
],
};
const rootDir = `../../dist/${currentComponentName}`;
/**
* Сборка рут-пакета
*/
const root = {
input: ['dist/**/*.js'],
external: baseConfig.external,
plugins: [
multiInput({
relative: 'dist',
}),
copy({
flatten: false,
targets: [
{ src: ['dist/**/*', '!**/*.js'], dest: rootDir },
{
src: 'package.json',
dest: `../../dist/${currentComponentName}`,
transform: () => createPackageJson('./esm/index.js'),
},
],
}),
coreComponentsRootPackageResolver({ currentPackageDir }),
],
output: [
{
dir: rootDir,
plugins: [coreComponentsTypingsResolver({ rootDir })],
},
],
};
const configs = [es5, modern, esm, currentComponentName !== 'themes' && cssm, root].filter(Boolean);
export default configs;