deno builddeno build (to pre render my sveltekit app) and cd build && deno index.jscd build && deno index.js works like a charm. However, I also have some api routes that use npm packages. devDependenciesdevDependencies, such as lints and types. In npm, I would use --omit=dev--omit=dev (I believe Bun has a similar flag).devDependenciesdevDependencies when running deno installdeno install deDependenciesdeDependencies.devDependenciesdevDependencies when running deno installdeno install or should I use --entrypoint=file1.file2--entrypoint=file1.file2 , if so which file should I select? Or is there a better way to handle this?
Join the Discord to ask follow-up questions and connect with the community