-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy path_config.ts
More file actions
414 lines (355 loc) · 10.7 KB
/
_config.ts
File metadata and controls
414 lines (355 loc) · 10.7 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
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
import type { RequestHandler } from "lume/core/server.ts";
import { dotenvRun } from "@dotenv-run/esbuild";
import lume from "lume/mod.ts";
import brotli from "lume/plugins/brotli.ts";
import esbuild from "lume/plugins/esbuild.ts";
import postcss from "lume/plugins/postcss.ts";
import sourceMaps from "lume/plugins/source_maps.ts";
import * as path from "@std/path";
import { ensureDirSync } from "@std/fs/ensure-dir";
import { walkSync } from "@std/fs/walk";
import { nodeModulesPolyfillPlugin } from "esbuild-plugins-node-modules-polyfill";
import { wasmLoader } from "esbuild-plugin-wasm";
import autoprefixer from "autoprefixer";
import cssnano from "cssnano";
import { create as createCID } from "~/common/cid.js";
const site = lume({
dest: "./dist",
src: "./src",
server: {
debugBar: false,
middlewares: [facetHtmlMiddleware],
},
});
export default site;
////////////////////////////////////////////
// JS
////////////////////////////////////////////
site.use(esbuild({
extensions: [".js"],
options: {
alias: {
"@automerge/automerge": "https://esm.sh/@automerge/automerge@^3.2.3",
},
bundle: true,
format: "esm",
minify: true,
external: ["./file-tree.json", "@awesome.me/webawesome/*"],
platform: "browser",
plugins: [
// @ts-ignore
dotenvRun({
files: [".env"],
}),
// Force @atcute/uint8array to use the browser entry (dist/index.js)
// instead of the Node entry (dist/index.node.js) which imports from
// node:crypto. The @deno/loader Workspace defaults to platform "node",
// causing the "node" export condition to match before "default".
{
name: "atcute-uint8array-browser",
setup(build) {
build.onLoad(
{ filter: /@atcute\+uint8array.*index\.node\.js$/ },
async (args) => {
const browserPath = args.path.replace(
"index.node.js",
"index.js",
);
const contents = await Deno.readTextFile(browserPath);
return { contents, loader: "js" };
},
);
},
},
{
name: "atcute-tid-browser",
setup(build) {
build.onLoad(
{ filter: /@atcute\+tid.*random-node\.js$/ },
async (args) => {
const browserPath = args.path.replace(
"random-node.js",
"random-web.js",
);
const contents = await Deno.readTextFile(browserPath);
return { contents, loader: "js" };
},
);
},
},
{
name: "atcute-multibase-browser",
setup(build) {
build.onLoad(
{ filter: /@atcute[+/]multibase.*-node\.js$/ },
async (args) => {
const browserPath = args.path.replace(
"-node.js",
"-web.js",
);
const contents = await Deno.readTextFile(browserPath);
return { contents, loader: "js" };
},
);
},
},
// nanoid ships a browser entry (index.browser.js) but esbuild resolves
// the default condition (index.js) which uses Buffer.allocUnsafe.
{
name: "nanoid-browser",
setup(build) {
build.onLoad(
{ filter: /nanoid\/index\.js$/ },
async (args) => {
const browserPath = args.path.replace(
"index.js",
"index.browser.js",
);
const contents = await Deno.readTextFile(browserPath);
return { contents, loader: "js" };
},
);
},
},
nodeModulesPolyfillPlugin({
fallback: "empty",
modules: [],
}),
wasmLoader(),
],
splitting: true,
target: "esnext",
},
}));
site.add([".js"]);
// *.inline.js files are inlined into their companion HTML at build/serve time.
// Exclude them from the regular build so esbuild doesn't try to bundle them.
site.ignore((p) => p.endsWith(".inline.js"));
////////////////////////////////////////////
// CSS
////////////////////////////////////////////
site.use(postcss({
plugins: [
autoprefixer(),
cssnano({
preset: "default",
}),
],
}));
site.add([".css"]);
site.remoteFile(
"vendor/98.css",
import.meta.resolve("./node_modules/98.css/dist/98.css"),
);
////////////////////////////////////////////
// BINARY ASSETS
////////////////////////////////////////////
site.add("/favicons", "/");
site.add("/fonts");
site.add("/images");
site.add("/testing");
site.add([".woff2"]);
site.remoteFile(
"vendor/ms_sans_serif.woff2",
import.meta.resolve(
"./node_modules/98.css/fonts/converted/ms_sans_serif.woff2",
),
);
site.remoteFile(
"vendor/ms_sans_serif_bold.woff2",
import.meta.resolve(
"./node_modules/98.css/fonts/converted/ms_sans_serif_bold.woff2",
),
);
site.remoteFile(
"fonts/98.css/ms_sans_serif.woff2",
import.meta.resolve(
"./node_modules/98.css/fonts/converted/ms_sans_serif.woff2",
),
);
site.remoteFile(
"fonts/98.css/ms_sans_serif_bold.woff2",
import.meta.resolve(
"./node_modules/98.css/fonts/converted/ms_sans_serif_bold.woff2",
),
);
////////////////////////////////////////////
// DEFINITIONS
////////////////////////////////////////////
site.add("/definitions");
// HELPERS
site.filter("facetURI", (text) => {
if (text.includes("://")) {
return text;
} else {
return `diffuse://${text}`;
}
});
site.filter("facetLoaderURL", (text) => {
let key = "path";
if (text.includes("://")) {
key = "uri";
}
return `l/?${key}=${encodeURIComponent(text)}`;
});
////////////////////////////////////////////
// PHOSPHOR ICONS
////////////////////////////////////////////
function phosphor(path: string) {
site.remoteFile(
`vendor/@phosphor-icons/web/${path}`,
import.meta.resolve(`./node_modules/@phosphor-icons/web/src/${path}`),
);
site.add(`vendor/@phosphor-icons/web/${path}`);
}
["bold", "duotone", "fill", "light", "regular", "light"].forEach((v) => {
const f = v === "regular" ? "" : `-${v[0].toUpperCase()}${v.slice(1)}`;
phosphor(`${v}/selection.json`);
phosphor(`${v}/style.css`);
phosphor(`${v}/Phosphor${f}.svg`);
phosphor(`${v}/Phosphor${f}.ttf`);
phosphor(`${v}/Phosphor${f}.woff`);
phosphor(`${v}/Phosphor${f}.woff2`);
});
////////////////////////////////////////////
// WEB AWESOME
////////////////////////////////////////////
for (
const f of walkSync("./node_modules/@awesome.me/webawesome/dist-cdn/", {
includeDirs: false,
})
) {
const relativePath = f.path.replace(
/^node_modules\/@awesome\.me\/webawesome\/dist-cdn\//,
"",
);
const destPath = `vendor/@awesome.me/webawesome/${relativePath}`;
site.remoteFile(
destPath,
import.meta.resolve(
`./node_modules/@awesome.me/webawesome/dist-cdn/${relativePath}`,
),
);
site.copy(destPath);
}
////////////////////////////////////////////
// MISC
////////////////////////////////////////////
site.add([".html"]);
site.add([".json"]);
site.add([".webmanifest"]);
site.use(brotli());
site.use(sourceMaps());
site.script("copy-type-defs", () => {
for (
const f of walkSync(
"./src/",
{ includeDirs: false, exts: [".d.ts"] },
)
) {
const dest = "dist/" + f.path.replace(/^src\//, "");
const dir = path.dirname(dest);
ensureDirSync(dir);
Deno.copyFileSync(f.path, dest);
}
});
site.addEventListener("afterBuild", () => {
// site.run("copy-type-defs");
});
////////////////////////////////////////////
// MIDDLEWARE
////////////////////////////////////////////
// Facet HTML files are HTML fragments fetched via JS, not full pages.
// Serving them as text/plain prevents Lume's dev server from injecting
// its live-reload <script> tag into the fetched content.
//
// Also inlines any <script type="module" src="./foo.inline.js"> references so
// that forked facets contain readable JS rather than an external file reference.
async function facetHtmlMiddleware(
request: Request,
next: RequestHandler,
): Promise<Response> {
const { pathname } = new URL(request.url);
const isFacetHtml = pathname.endsWith(".html") &&
!pathname.startsWith("/testing/");
const response = await next(request);
if (!isFacetHtml || !response.headers.get("content-type")?.includes("html")) {
return response;
}
let content = await response.text();
content = await inlineScriptSrc(content);
const headers = new Headers(response.headers);
headers.set("content-type", "text/plain; charset=utf-8");
return new Response(content, {
status: response.status,
statusText: response.statusText,
headers,
});
}
const SCRIPT_SRC_RE =
/<script type="module" src="([^"]+\.inline\.js)"><\/script>/;
async function inlineScriptSrc(content: string): Promise<string> {
const match = SCRIPT_SRC_RE.exec(content);
if (!match) return content;
const jsPath = path.join("src", match[1]);
try {
return htmlWithInlineJs({ content, jsPath, match: match[0] });
} catch {
return content;
}
}
site.addEventListener("afterBuild", async () => {
for (
const f of walkSync("./dist/", { includeDirs: false, exts: [".html"] })
) {
const content = Deno.readTextFileSync(f.path);
const match = SCRIPT_SRC_RE.exec(content);
if (!match) continue;
const jsPath = path.join("src", match[1]);
try {
const newContent = htmlWithInlineJs({ content, jsPath, match: match[0] });
Deno.writeTextFileSync(f.path, newContent);
} catch {
// leave as-is if the source file can't be read
}
}
});
site.addEventListener("afterBuild", async () => {
const RAW = 0x55;
async function buildFileTree(
dir: string,
prefix = "",
): Promise<Record<string, string>> {
const tree: Record<string, string> = {};
for (const entry of Deno.readDirSync(dir)) {
const entryPath = path.join(dir, entry.name);
const entryKey = prefix ? `${prefix}/${entry.name}` : entry.name;
if (entry.isDirectory) {
Object.assign(tree, await buildFileTree(entryPath, entryKey));
} else {
const data = Deno.readFileSync(entryPath);
tree[entryKey] = await createCID(RAW, data);
}
}
return tree;
}
const tree = await buildFileTree("dist/");
const sorted = Object.fromEntries(
Object.keys(tree).sort().map((k) => [k, tree[k]]),
);
Deno.writeTextFileSync(
"./dist/file-tree.json",
JSON.stringify(sorted, null, 2),
);
});
function htmlWithInlineJs({ content, match, jsPath }: {
content: string;
match: string;
jsPath: string;
}): string {
const js =
Deno.readTextFileSync(jsPath).split("\n").map((line) => ` ${line}`).join(
"\n",
).trimEnd() + "\n";
return content.replace(match, `<script type="module">\n${js}</script>`);
}