aboutsummaryrefslogtreecommitdiff
path: root/static/package.json (unfollow)
Commit message (Collapse)Author
2023-09-07Document remaining javascript items.Hugo Hörnquist
2023-09-05Move JS documentation into the JS-code.Hugo Hörnquist
Texinfo was a bad match for how TypeScript is structured. This also allows generation of jsdoc pages, which can be nice. Another large win is that this opens up for the texinfo pages to replace the Guile heading with different subheadings, including - external library - internal library - C library - ...
2023-09-05Add build step for jsdoc.Hugo Hörnquist
2022-08-01Change JavaScript build system to esbuild.Hugo Hörnquist
Esbuild is way faster, and feels less hacky. One downside is that it doesn't actually check Typescript types. However, typescript can still be installed alongside, and has the fancy --noEmit flag for just this situation.
2021-11-10Add madge for frontend dep visualization.Hugo Hörnquist
2021-11-08Major work on event creation.Hugo Hörnquist
2021-11-05Start depending on npm.Hugo Hörnquist
Chromium can't handle JavaScript-modules in XHTML-document [1]. The workaround is to use a javascript bundler. Here we start depending on browserify. I evaluated both that and webpack, and browserify seemed to work marginally better with typescript. Unfortunately this also makes us depend on npm, where we unfortunately already are bloatet... $ ls static/node_modules | wc -l 174 [1]: https://bugs.chromium.org/p/chromium/issues/detail?id=717643