-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
67 lines (63 loc) · 1.82 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
import typescript from '@rollup/plugin-typescript';
import babel from '@rollup/plugin-babel';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import json from '@rollup/plugin-json';
import offMainThread from '@surma/rollup-plugin-off-main-thread';
import eslint from '@rollup/plugin-eslint';
import path from 'node:path';
import pkg from './package.json' assert { type: 'json' };
const isTestEnv = process.env.NODE_ENV === 'test';
const inputOptions = {
input: 'src/index.ts',
plugins: [
json(),
postcss({
extract: path.resolve('dist/asce.css'),
}),
offMainThread({
silenceESMWorkerWarning: true,
}),
eslint({
throwOnError: true,
include: ['src/**/*.ts'],
}),
resolve(),
commonjs(),
typescript(),
babel({
babelHelpers: 'bundled',
plugins: ['@babel/plugin-proposal-class-properties'],
exclude: ['node_modules/**'],
}),
!isTestEnv && addBackCssImport(),
].filter(x => x),
external: isTestEnv ? [] : Object.keys(pkg.dependencies),
onwarn(msg, handler) {
if (isTestEnv && msg.code === 'EVAL') {
// not much to be done about this (error is in dependency)
return;
}
handler(msg);
}
};
const outputOptions = {
dir: 'dist',
format: 'esm',
};
function addBackCssImport() {
return {
name: 'add-back-css-import-removed-by-rollup-postcss',
banner(chunk) {
if (chunk.isEntry && chunk.name === 'index') {
return `import './asce.css';\n`;
}
return null;
},
};
}
export default {
output: outputOptions,
...inputOptions,
};