2023-08-01 02:16:15 +00:00
|
|
|
# Formats Exposed
|
|
|
|
|
2023-08-02 16:44:27 +00:00
|
|
|
To develop, start a static file server in `public/`. There is no build step.
|
2023-08-01 02:16:15 +00:00
|
|
|
|
|
|
|
To deploy, copy the files from `public/` to a static file host.
|
|
|
|
|
|
|
|
To run tests, run `deno test`.
|
|
|
|
|
|
|
|
To format code, run `deno fmt`.
|
|
|
|
|
|
|
|
To lint, run `deno lint`.
|
|
|
|
|
|
|
|
To run type checks, run `deno task typecheck`.
|
|
|
|
|
|
|
|
To run all checks (tests, linting, code formatting, and type checks), run
|
|
|
|
`deno task check-all`.
|