webapp/README.md

20 lines
262 B
Markdown
Raw Normal View History

2023-02-10 09:40:44 +00:00
## How to start
2024-06-24 17:50:27 +00:00
Use Bun to manage packages.
2023-02-10 09:40:44 +00:00
```
2024-06-24 17:50:27 +00:00
bun i
2023-02-10 09:40:44 +00:00
```
2022-11-27 18:36:45 +00:00
2023-02-10 09:40:44 +00:00
## Useful commands
2024-02-15 11:46:11 +00:00
run checks with your favorite package manager: npm, yarn, pnpm or bun
2023-02-10 09:40:44 +00:00
```
2024-06-24 17:50:27 +00:00
bun run typecheck
2023-02-10 09:40:44 +00:00
```
2024-02-05 08:59:21 +00:00
fix styles, imports, formatting and autofixable linting errors:
2022-09-09 11:53:35 +00:00
```
2024-06-24 17:50:27 +00:00
bun run fix
2022-09-09 11:53:35 +00:00
```