It’ll only work with Module Workers that use export default if that’s what you mean
It’ll only work with Module Workers that use export default if that’s what you mean
.wrangler so that all the packages in my monorepo share the same database?caches.default.match() always returns undefined.
https://api.cloudflare.com/client/v4/accounts/${account_id}/workers/scripts/${script_name};multipart/form-data; boundary=${form.getBoundary()},Bearer ${apiToken}


wrangler deploy and getting this error workers.api.error.unknown [code: 10013]. If I remove upload_source_maps = true from wrangler.toml it starts working correctly. This used to be working before.upload_source_maps makes the upload work..wranglercaches.default.match()https://api.cloudflare.com/client/v4/accounts/${account_id}/workers/scripts/${script_name}multipart/form-data; boundary=${form.getBoundary()}Bearer ${apiToken} workers.api.error.unknown [code: 10013]upload_source_mapsexport function withChildLogger<T>(
bindings: Bindings,
fn: (logger: Logger | undefined) => T,
options?: ChildLoggerOptions,
): T {
const logger = getLogger()?.child(bindings, options);
return logger ? loggerStorage.run(logger, () => fn(logger)) : fn(logger);
}