I have a html page, including some css and typescript which I use to prettify some logs.
While so far my build consisted of running the typescript compiler and telling it to watch for changes (tsc -w), I would like to bundle all the files (css, html, javascript generated from typescript) into a single file, so that the prettified logs are fully selfcontained in a single file and can be exchanged e..

Read more