update electron to v43

This commit is contained in:
olcxja 2026-07-09 22:38:33 +02:00
commit fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions

23
electron/node_modules/jiti/lib/jiti-static.mjs generated vendored Normal file
View file

@ -0,0 +1,23 @@
import { createRequire } from "node:module";
import _createJiti from "../dist/jiti.cjs";
// Static import so Bun bundles babel.cjs into compiled binaries
import _babelTransform from "../dist/babel.cjs";
function onError(err) {
throw err; /* ↓ Check stack trace ↓ */
}
const nativeImport = (id) => import(id);
export function createJiti(id, opts = {}) {
if (!opts.transform) {
opts = { ...opts, transform: _babelTransform };
}
return _createJiti(id, opts, {
onError,
nativeImport,
createRequire,
});
}
export default createJiti;