mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 19:58:09 +08:00
f9e192535f
* refactor: replace yarn with pnpm * chore: install pnpm * chore: disable cache * ignore pnpm-lock.yaml * resolve deps * setup pnpm
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
|
|
pnpm bootstrap
|
|
```
|
|
|
|
## Test suite failed to run (jest)
|
|
|
|
Can not run `pnpm test xxx`
|
|
|
|
```bash
|
|
rm -rf dist
|
|
```
|
|
|
|
Try again.
|