- Log workforce sync errors to backend stdout so they appear in docker logs - Extend error flash from 5s to 15s so errors are readable - Replace sendBeacon (POST-only) with keepalive fetch (PUT) on unload — sendBeacon was hitting 404s on all three unload saves Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
No EOL
681 B
JavaScript
22 lines
No EOL
681 B
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.has = has;
|
|
exports.laterLogMissing = laterLogMissing;
|
|
exports.logMissing = logMissing;
|
|
exports.resolve = resolve;
|
|
function resolve(dirname, moduleName, absoluteImports) {
|
|
if (absoluteImports === false) return moduleName;
|
|
throw new Error(`"absoluteImports" is not supported in bundles prepared for the browser.`);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
function has(basedir, name) {
|
|
return true;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
function logMissing(missingDeps) {}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
function laterLogMissing(missingDeps) {} |