-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
151 lines (136 loc) · 3.92 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
import svelte from "rollup-plugin-svelte"
import resolve from "@rollup/plugin-node-resolve"
import commonjs from "@rollup/plugin-commonjs"
import livereload from "rollup-plugin-livereload"
import { terser } from "rollup-plugin-terser"
import copy from "rollup-plugin-copy"
import sveltePreprocess from "svelte-preprocess"
import del from "del"
const preprocess = sveltePreprocess({
scss: {
includePaths: ["src"],
},
postcss: {
plugins: [require("autoprefixer")],
},
})
const staticDir = "static"
const distDir = "dist"
const buildDir = `${distDir}/build`
const production = !process.env.ROLLUP_WATCH
const bundling = process.env.BUNDLING || production ? "dynamic" : "bundle"
const shouldPrerender = typeof process.env.PRERENDER !== "undefined" ? process.env.PRERENDER : !!production
del.sync(distDir + "/**")
function createConfig({ output, inlineDynamicImports, plugins = [] }) {
const transform = inlineDynamicImports ? bundledTransform : dynamicTransform
return {
inlineDynamicImports,
input: `src/main.js`,
output: {
name: "app",
sourcemap: true,
...output,
},
plugins: [
copy({
targets: [
{ src: [staticDir + "/*", "!*/(__index.html)"], dest: distDir },
{ src: `${staticDir}/__index.html`, dest: distDir, rename: "__app.html", transform },
],
copyOnce: true,
flatten: false,
}),
svelte({
preprocess,
// enable run-time checks when not in production
dev: !production,
hydratable: true,
// we'll extract any component CSS out into
// a separate file — better for performance
css: (css) => {
css.write(`${buildDir}/bundle.css`)
},
}),
// If you have external dependencies installed from
// npm, you'll most likely need these plugins. In
// some cases you'll need additional configuration —
// consult the documentation for details:
// https://github.com/rollup/rollup-plugin-commonjs
resolve({
browser: true,
dedupe: (importee) => importee === "svelte" || importee.startsWith("svelte/"),
}),
commonjs(),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser(),
...plugins,
],
watch: {
clearScreen: false,
},
}
}
const bundledConfig = {
inlineDynamicImports: true,
output: {
format: "iife",
file: `${buildDir}/bundle.js`,
},
plugins: [!production && serve(), !production && livereload(distDir)],
}
const dynamicConfig = {
inlineDynamicImports: false,
output: {
format: "esm",
dir: buildDir,
},
plugins: [!production && livereload(distDir)],
}
const configs = [createConfig(bundledConfig)]
if (bundling === "dynamic") configs.push(createConfig(dynamicConfig))
if (shouldPrerender) [...configs].pop().plugins.push(prerender())
export default configs
function serve() {
let started = false
return {
writeBundle() {
if (!started) {
started = true
require("child_process").spawn("npm", ["run", "serve"], {
stdio: ["ignore", "inherit", "inherit"],
shell: true,
})
}
},
}
}
function prerender() {
return {
writeBundle() {
if (shouldPrerender) {
require("child_process").spawn("npm", ["run", "export"], {
stdio: ["ignore", "inherit", "inherit"],
shell: true,
})
}
},
}
}
function bundledTransform(contents) {
return contents.toString().replace(
"__SCRIPT__",
`
<script defer src="/build/bundle.js" ></script>
`
)
}
function dynamicTransform(contents) {
return contents.toString().replace(
"__SCRIPT__",
`
<script type="module" defer src="https://unpkg.com/[email protected]/dist/index.mjs?module" data-main="/build/main.js"></script>
<script nomodule defer src="https://unpkg.com/dimport/nomodule" data-main="/build/main.js"></script>
`
)
}