- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
29 lines
624 B
JavaScript
29 lines
624 B
JavaScript
import { createRequire } from "node:module";
|
|
import _createJiti from "../dist/jiti.cjs";
|
|
|
|
function onError(err) {
|
|
throw err; /* ↓ Check stack trace ↓ */
|
|
}
|
|
|
|
const nativeImport = (id) => import(id);
|
|
|
|
let _transform;
|
|
function lazyTransform(...args) {
|
|
if (!_transform) {
|
|
_transform = createRequire(import.meta.url)("../dist/babel.cjs");
|
|
}
|
|
return _transform(...args);
|
|
}
|
|
|
|
export function createJiti(id, opts = {}) {
|
|
if (!opts.transform) {
|
|
opts = { ...opts, transform: lazyTransform };
|
|
}
|
|
return _createJiti(id, opts, {
|
|
onError,
|
|
nativeImport,
|
|
createRequire,
|
|
});
|
|
}
|
|
|
|
export default createJiti;
|