Update app and tooling

This commit is contained in:
Lawrence Chen 2026-01-29 17:36:26 -08:00
parent 3046531bdd
commit e620ec7349
4950 changed files with 2975120 additions and 10 deletions

12
node_modules/vercel/dist/vc.js generated vendored Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env node
// This shim defers loading the real module until the compile cache is enabled.
// https://nodejs.org/api/module.html#moduleenablecompilecachecachedir
// enableCompileCache was added in Node.js 22.8.0, so we need to handle older versions.
try {
const { enableCompileCache } = await import('node:module');
if (enableCompileCache) {
enableCompileCache();
}
} catch {}
await import('./index.js');