Update app and tooling
This commit is contained in:
parent
3046531bdd
commit
e620ec7349
4950 changed files with 2975120 additions and 10 deletions
12
node_modules/vercel/dist/vc.js
generated
vendored
Executable file
12
node_modules/vercel/dist/vc.js
generated
vendored
Executable 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');
|
||||
Loading…
Add table
Add a link
Reference in a new issue