Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
19
network-poc/frontend/node_modules/lru-cache/dist/esm/diagnostics-channel.js
generated
vendored
Normal file
19
network-poc/frontend/node_modules/lru-cache/dist/esm/diagnostics-channel.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* no-op polyfills for non-node environments. tries to load the actual
|
||||
* diagnostics_channel module on platforms that support it, but fails
|
||||
* gracefully if not found. This means that the first tick of metrics
|
||||
* and tracing will be missed, but that probably doesn't matter much.
|
||||
*/
|
||||
// conditionally import from diagnostic_channel, fall back to dummyfill
|
||||
// all we actually have to mock is the hasSubscribers, since we alwasy check
|
||||
/* v8 ignore next */
|
||||
const dummy = { hasSubscribers: false };
|
||||
export let metrics = dummy;
|
||||
export let tracing = dummy;
|
||||
import('node:diagnostics_channel')
|
||||
.then(dc => {
|
||||
metrics = dc.channel('lru-cache:metrics');
|
||||
tracing = dc.tracingChannel('lru-cache');
|
||||
})
|
||||
.catch(() => { });
|
||||
//# sourceMappingURL=diagnostics-channel-esm.mjs.map
|
||||
Reference in New Issue
Block a user