TypeScript files served from content directories are transformed into JavaScript. Reference .ts files in html templates as module code.
<script type="module" src="/filename.ts">
This repository uses eslint to format TS files, stylelint to format CSS files, and prettier to format TS, CSS, Markdown, and YAML files.
See the style guides:
It is encouraged that all TS and CSS code be run through formatters before submitting a change. However, it is not a strict requirement enforced by CI.
./npm install
./npm run all
The third_party
directory was generated with go run ./devtools/cmd/npmdeps
. It contains JS packages that are served by the web site. To add or upgrade a new dependency use the necessary ./npm
command then run go run ./devtools/cmd/npmdeps
. Remove unnecessary files from the copy result where appropriate. For example, content/localserver/index.html
only depends on files from third_party/d3@7.8.4/dist/
so the directory third_party/d3@7.8.4/src
can be deleted.