dsherret
Deno Emit for Bundling - Potential Open Source Contributions
i just opened this PR last week: https://github.com/denoland/deno/pull/27766 -- i don't have any pending PRs at the moment
23 replies
Deno Emit for Bundling - Potential Open Source Contributions
i've also been slowly extracting out resolution code from the CLI for use in rolldown and rspack. I have a branch I've been working on to get it working in rolldown, but I'm taking a break for a week because of the Deno 2.2 release next week
23 replies
Deno Emit for Bundling - Potential Open Source Contributions
i'd recommend using: https://github.com/lucacasonato/esbuild_deno_loader
23 replies
Workspaces issue: Error running deno run dev command while starting Oak server
just checked in on the status of workspaces and the implementation in deploy is being worked on at the moment. I don't have an estimate for when it will be supported, but you can manually write in the resolution in the meantime in the main deno.json that gets resolved in deploy https://docs.deno.com/runtime/manual/basics/import_maps/
To re-iterate, instead of relying on the automatic workspace resolution, you can manually write it in the import map (deno.json) like this:
48 replies
Workspaces issue: Error running deno run dev command while starting Oak server
based on that error message you posted though, it looks like workspace support hasn't landed in deploy yet. I'll check now for sure though. You can work around it by using an import map and mapping the specifiers like
"@scope/server": "../relative-path-to-package/mod.ts"
48 replies