-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
211 lines (188 loc) · 5.72 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
import { spawn } from "child_process";
import { performance } from "perf_hooks";
import resolve from "@rollup/plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import commonjs from "@rollup/plugin-commonjs";
import json from "@rollup/plugin-json";
import typescript from "@rollup/plugin-typescript";
import svelte from "rollup-plugin-svelte";
import babel from "@rollup/plugin-babel";
import colors from "kleur";
import { terser } from "rollup-plugin-terser";
import config from "sapper/config/rollup";
import pkg from "./package.json";
const { createPreprocessors } = require("./svelte.config.js");
const mode = process.env.NODE_ENV;
const dev = mode === "development";
const sourcemap = dev ? "inline" : false;
const legacy = !!process.env.SAPPER_LEGACY_BUILD;
const preprocess = createPreprocessors({ sourceMap: !!sourcemap });
// Changes in these files will trigger a rebuild of the global CSS
const globalCSSWatchFiles = ["postcss.config.js", "tailwind.config.js", "src/global.pcss"];
const warningIsIgnored = (warning) => warning.message.includes(
"Use of eval is strongly discouraged, as it poses security risks and may cause issues with minification",
) || warning.message.includes("Circular dependency: node_modules");
// Workaround for https://github.com/sveltejs/sapper/issues/1266
const onwarn = (warning, _onwarn) => (warning.code === "CIRCULAR_DEPENDENCY" && /[/\\]@sapper[/\\]/.test(warning.message)) || warningIsIgnored(warning) || console.warn(warning.toString());
export default {
client: {
input: config.client.input().replace(/\.js$/, ".ts"),
output: { ...config.client.output(), sourcemap },
plugins: [
replace({
"process.browser": true,
"process.env.NODE_ENV": JSON.stringify(mode),
}),
svelte({
dev,
hydratable: true,
emitCss: true,
preprocess,
onwarn: (warning, handler) => {
// e.g. don't warn on a11y-autofocus
if (warning.code.includes('a11y')) {
console.log(warning.code)
return
}
// let Rollup handle all other warnings normally
handler(warning)
}
}),
resolve({
browser: true,
dedupe: ["svelte"],
}),
commonjs({ sourceMap: !!sourcemap }),
typescript({
noEmitOnError: !dev,
sourceMap: !!sourcemap,
}),
json(),
legacy && babel({
extensions: [".js", ".mjs", ".html", ".svelte"],
babelHelpers: "runtime",
exclude: ["node_modules/@babel/**"],
presets: [
["@babel/preset-env", {
targets: "> 0.25%, not dead",
}],
],
plugins: [
"@babel/plugin-syntax-dynamic-import",
["@babel/plugin-transform-runtime", {
useESModules: true,
}],
],
}),
!dev && terser({
module: true,
}),
(() => {
let builder;
let rebuildNeeded = false;
const buildGlobalCSS = () => {
if (builder) {
rebuildNeeded = true;
return;
}
rebuildNeeded = false;
const start = performance.now();
try {
builder = spawn("node", ["--experimental-modules", "--unhandled-rejections=strict", "build-global-css.mjs", sourcemap]);
builder.stdout.pipe(process.stdout);
builder.stderr.pipe(process.stderr);
builder.on("close", (code) => {
if (code === 0) {
const elapsed = parseInt(performance.now() - start, 10);
console.log(`${colors.bold().green("✔ global css")} (src/global.pcss → static/global.css${sourcemap === true ? " + static/global.css.map" : ""}) ${colors.gray(`(${elapsed}ms)`)}`);
} else if (code !== null) {
if (dev) {
console.error(`global css builder exited with code ${code}`);
console.log(colors.bold().red("✗ global css"));
} else {
throw new Error(`global css builder exited with code ${code}`);
}
}
builder = undefined;
if (rebuildNeeded) {
console.log(`\n${colors.bold().italic().cyan("something")} changed. rebuilding...`);
buildGlobalCSS();
}
});
} catch (err) {
console.log(colors.bold().red("✗ global css"));
console.error(err);
}
};
return {
name: "build-global-css",
buildStart() {
buildGlobalCSS();
globalCSSWatchFiles.forEach((file) => this.addWatchFile(file));
},
generateBundle: buildGlobalCSS,
};
})(),
],
preserveEntrySignatures: false,
onwarn,
},
server: {
input: { server: config.server.input().server.replace(/\.js$/, ".ts") },
output: { ...config.server.output(), sourcemap },
plugins: [
replace({
"process.browser": false,
"process.env.NODE_ENV": JSON.stringify(mode),
"module.require": "require",
}),
svelte({
generate: "ssr",
dev,
preprocess,
onwarn: (warning, handler) => {
// e.g. don't warn on a11y-autofocus
if (warning.code.includes('a11y')) {
console.log(warning.code)
return
}
// let Rollup handle all other warnings normally
handler(warning)
}
}),
resolve({
dedupe: ["svelte"],
}),
commonjs({ sourceMap: !!sourcemap }),
typescript({
noEmitOnError: !dev,
sourceMap: !!sourcemap,
}),
json(),
],
external: Object.keys(pkg.dependencies).concat(
require("module").builtinModules || Object.keys(process.binding("natives")), // eslint-disable-line global-require
),
preserveEntrySignatures: "strict",
onwarn,
},
serviceworker: {
input: config.serviceworker.input().replace(/\.js$/, ".ts"),
output: { ...config.serviceworker.output(), sourcemap },
plugins: [
resolve(),
replace({
"process.browser": true,
"process.env.NODE_ENV": JSON.stringify(mode),
}),
commonjs({ sourceMap: !!sourcemap }),
typescript({
noEmitOnError: !dev,
sourceMap: !!sourcemap,
}),
!dev && terser(),
],
preserveEntrySignatures: false,
onwarn,
},
};