mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
20 lines
253 B
Markdown
20 lines
253 B
Markdown
|
# DEV FAQ
|
||
|
|
||
|
Here are the problems that are easy to encounter in development.
|
||
|
|
||
|
## If you encounter dependency related issues
|
||
|
|
||
|
```bash
|
||
|
yarn bootstrap
|
||
|
```
|
||
|
|
||
|
## Test suite failed to run (jest)
|
||
|
|
||
|
Can not run `yarn test xxx`
|
||
|
|
||
|
```bash
|
||
|
rm -rf dist
|
||
|
```
|
||
|
|
||
|
Try again.
|