-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup.config.js
240 lines (226 loc) · 6.37 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import svelte from "rollup-plugin-svelte";
import builtins from "rollup-plugin-node-builtins";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import livereload from "rollup-plugin-livereload";
import json from "rollup-plugin-json";
import replace from "rollup-plugin-replace";
import { terser } from "rollup-plugin-terser";
// import { scss, coffeescript, pug } from 'svelte-preprocess'
// import { sass } from 'svelte-preprocess-sass';
import css from "rollup-plugin-css-only";
import autoPreprocess from "svelte-preprocess";
//import typescript from '@rollup/plugin-typescript';
//import smelte from "smelte/rollup-plugin-smelte"; //
const production = !process.env.ROLLUP_WATCH;
export default [
// Main App
{
input: "src/webapp/main.js",
output: {
sourcemap: true,
format: "iife",
name: "app",
file: "public/build/bundle.js",
},
plugins: [
bundleDemos({
target: "src/webapp/demos.js",
root: "src",
pathBase: "../",
}),
replace({
DEV: !production,
BUILD_TIME: () => new Date() + "",
BUILD_MS: () => new Date().getTime(),
}),
//typescript(),
//css({ output: "public/build/extra.css" }),
svelte({
// enable run-time checks when not in production
preprocess: autoPreprocess(),
}),
css({ output: "public/build/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/plugins/tree/master/packages/commonjs
resolve({
browser: true,
dedupe: ["svelte"],
}),
// babel({
// // exclude: 'node_modules/**', // only transpile our source code
// // plugins: ["@babel/plugin-transform-named-capturing-groups-regex"]
// }),
commonjs(),
builtins(),
!production && serve(),
!production && livereload("public"),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser(),
],
watch: {
clearScreen: false,
},
},
// Functions...
{
input: "src/data/functions/api.js",
output: {
sourcemap: true,
format: "cjs",
name: "functions",
file: "functions/api.js",
},
plugins: [
json(),
production && replace({ MONGO_DB_NAME: "Gourmet" }),
!production &&
replace({
MONGO_DB_NAME: "devtest",
}),
commonjs(),
//typescript(),
],
},
{
input: "src/extension/background.js",
output: {
sourcemap: true,
format: "iife",
name: "extension",
file: "extension/background.js",
},
plugins: [
replace({
BUILD_TIME: () => new Date() + "",
BUILD_MS: () => new Date().getTime(),
DEV: !production,
}),
],
},
{
input: "src/extension/content.js",
output: {
sourcemap: true,
format: "iife",
name: "extension",
file: "extension/content.js",
},
plugins: [
replace({
BUILD_TIME: () => new Date() + "",
BUILD_MS: () => new Date().getTime(),
DEV: !production,
}),
svelte({
// enable run-time checks when not in production
dev: !production,
// we'll extract any component CSS out into
// a separate file better for performance
}),
resolve({
browser: true,
dedupe: ["svelte"],
}),
// babel({
// // exclude: 'node_modules/**', // only transpile our source code
// // plugins: ["@babel/plugin-transform-named-capturing-groups-regex"]
// }),
commonjs(),
builtins(),
// In dev mode, call `npm run start` once
// the bundle has been generated
// Watch the `public` directory and refresh the
// browser on changes when not in production
//!production && livereload('extension'),
// If we're building for production (npm run build
// instead of npm run dev), minify
production && terser(),
],
},
{
input: "src/extension/embed.js",
output: {
sourcemap: true,
format: "iife",
name: "extension",
file: "extension/embed.js",
},
plugins: [
replace({
DEV: !production,
BUILD_TIME: () => new Date() + "",
BUILD_MS: () => new Date().getTime(),
}),
svelte({
// enable run-time checks when not in production
dev: !production,
// we'll extract any component CSS out into
// a separate file better for performance
}),
resolve({
browser: true,
dedupe: ["svelte"],
}),
commonjs(),
],
},
];
function serve() {
let started = false;
return {
writeBundle() {
if (!started) {
started = true;
require("child_process").spawn("npm", ["run", "start", "--", "--dev"], {
stdio: ["ignore", "inherit", "inherit"],
shell: true,
});
}
},
};
}
import fs from "fs";
import path from "path";
import glob from "glob";
function bundleDemos(options) {
console.log("called bundle...");
return {
generateBundle() {
console.log("***BUNDLE DEMOS...*");
let rootDirectory = options.root;
let pathBase = options.pathBase || "./";
let files = [];
let globExpression = "*.demo.svelte";
for (let level = 0; level < 5; level++) {
files = [...files, ...glob.sync(globExpression)];
globExpression = "*/" + globExpression;
}
let moduleNames = [];
let importStatements = files
.map((fn) => {
let bn = path.basename(fn);
let moduleName = bn.split(".")[0];
let pathname = pathBase + fn.replace(/^[^/]+\//, "");
moduleNames.push(moduleName);
return `import ${moduleName} from "${pathname}";`;
})
.join("\n");
let exportStatement = `
export default {
${moduleNames.join(",\n ")}
}
`;
let currentContents = fs.readFileSync(options.target);
let newContents = `${importStatements}\n\n${exportStatement}`;
if (currentContents != newContents) {
console.log("demos.js changed, rewriting!");
fs.writeFileSync(options.target, newContents);
}
},
};
}