Rust backend: SQLite (WAL mode, 8 tables), vault encryption (Argon2id + AES-256-GCM), settings/connections/credentials services, 19 Tauri command wrappers. 46/46 tests passing. Vue 3 frontend: unlock/create vault flow, Pinia app store, Tailwind CSS v4 dark theme with Wraith branding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
624 B
JavaScript
30 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;
|