-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
93 lines (89 loc) · 2.24 KB
/
Copy pathrollup.config.mjs
File metadata and controls
93 lines (89 loc) · 2.24 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
83
84
85
86
87
88
89
90
91
92
93
/* eslint-env node */
import { createRequire } from 'node:module';
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import typescript from '@rollup/plugin-typescript';
import babel from '@rollup/plugin-babel';
import postcss from 'rollup-plugin-postcss';
import postcssPresetEnv from 'postcss-preset-env';
import postcssLit from 'rollup-plugin-postcss-lit';
import { string } from 'rollup-plugin-string';
import terser from '@rollup/plugin-terser';
import replace from '@rollup/plugin-replace';
import serve from 'rollup-plugin-serve';
const require = createRequire(import.meta.url);
const pkg = require('./package.json');
const IS_DEV = !!process.env.ROLLUP_WATCH;
const serverOptions = {
contentBase: ['./dist'],
host: 'localhost',
port: 5000,
allowCrossOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
};
export default {
input: 'src/body-miscale-card.ts',
output: {
dir: 'dist',
format: 'es',
sourcemap: IS_DEV,
entryFileNames: 'body-miscale-card.js',
inlineDynamicImports: true,
},
context: 'window',
onwarn(warning, warn) {
if (warning.code === 'THIS_IS_UNDEFINED') return;
warn(warning);
},
plugins: [
nodeResolve(),
commonjs(),
json(),
replace({
preventAssignment: true,
values: {
PKG_VERSION_VALUE: IS_DEV ? 'DEVELOPMENT' : pkg.version,
},
}),
typescript({
tsconfig: './tsconfig.json',
declaration: false,
sourceMap: IS_DEV,
}),
string({
include: ['**/styles.css'],
}),
postcss({
plugins: [
postcssPresetEnv({
stage: 1,
features: { 'nesting-rules': true },
}),
],
extract: false,
inject: false,
exclude: ['**/styles.css'],
}),
postcssLit({
include: ['**/editor.css'],
}),
babel({
babelHelpers: 'runtime',
exclude: 'node_modules/**',
extensions: ['.ts', '.js'],
}),
IS_DEV && serve(serverOptions),
!IS_DEV && terser({
format: {
comments: false,
},
compress: {
pure_funcs: ['console.log', 'console.debug'],
drop_debugger: true,
},
}),
].filter(Boolean),
};