element-plus/DEV_FAQ.md

20 lines
253 B
Markdown
Raw Normal View History

# DEV FAQ
Here are the problems that are easy to encounter in development.
## If you encounter dependency related issues
```bash
pnpm bootstrap
```
## Test suite failed to run (jest)
Can not run `pnpm test xxx`
```bash
rm -rf dist
```
Try again.