cdoremus
Google Calendar
I put a lot of effort into my blog post and was hoping for some GitHub sponsorships, but alas they were only a couple. So I've been pursuing other opportunities that make money. I'd certainly do this blog post if you can give me a substantial sponsorship.
12 replies
Typescript intelisense between jupyter notebooks
You might want to try this channel where the Deno Jupyter devs tend to hang out: https://discord.com/channels/684898665143206084/1066309002771845202
6 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
I'm not sure that adding WC deployment to Fresh 2.0 would have widespread appeal except to those like you and I that like to do Vanilla JS for the client side.
20 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
I'd like to concentrate on the blog post accompanying this code for now. The most complex thing about the prototype you suggested is the TS->JS transformation which is why I'd like to hook into what Deno does.
20 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
BTW, this is the repo containing the file Nick was referring to: https://github.com/cdoremus/fresh-webcomponents
20 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
Yes, but as I explained above, it requires that I add each new Web Component file to
mod.ts
. I was hoping that there was an automated way to bundle all the files into the bundle rather than using mod.ts
.20 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
Thanks for your help, Marvin. I tried your suggestion, but it doesn't work for multiple input files where the
outdir
property needs to be used instead of outfile
. In that case, bundle
is ignored. Instead I went with a mod.ts
file as described above.20 replies
Is there a way to bundle multiple files into one file using `esbuild_deno_loader` and `esbuild`?
I thank you for your examples, Nick, but I'd rather not build my own way to do this. I would think that
esbuild
should be able to transform TS files into a single JS file. Does anybody know how to do this?20 replies