mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
49 lines
522 B
Markdown
49 lines
522 B
Markdown
# admin
|
|
|
|
### Compiles and hot-reloads for development
|
|
```
|
|
turbo dev
|
|
```
|
|
or from root folder:
|
|
|
|
```
|
|
turbo admin#dev
|
|
```
|
|
|
|
|
|
### Compiles and minifies for production
|
|
```
|
|
turbo build
|
|
```
|
|
or from root folder:
|
|
|
|
```
|
|
turbo admin#build
|
|
```
|
|
|
|
### Lints and fixes files
|
|
```
|
|
turbo lint
|
|
```
|
|
or from root folder:
|
|
|
|
```
|
|
turbo admin#lint
|
|
```
|
|
|
|
### Unit tests
|
|
```
|
|
turbo test
|
|
```
|
|
For filtering out single tests:
|
|
```
|
|
turbo test -- <test_name>
|
|
```
|
|
Everything after -- will be passed to vitest.
|
|
|
|
or from root folder:
|
|
|
|
```
|
|
turbo admin#test
|
|
```
|