Remove doc generation from build script; it isn't necessary

559029dcad9b84708a384e01f577d2c1ac2781fc

Tucker McKnight | Mon Jan 12 2026

Remove doc generation from build script; it isn't necessary

The docs aren't used as part of the installable node module, they
are only for the public website.

Also make sure that the dist/frontend folder is created. This caused
a problem when installing from scratch.

Also add a todo about fixing file displays when the syntax highlighting
plugin isn't available.
make.sh:1
Before
1
After
1
mkdir -p dist/frontend
package.json:4
Before
4
    "build": "npm run schemas && npm run ts && npm run frontend && npm run docs && npm run css",
After
4
    "build": "npm run schemas && npm run ts && npm run frontend && npm run css",
wiki/index.md:46
Before
46
After
46
- [ ] Better file display if syntax highlighting plugin is not available
  - Seems to print out all on one line right now.