2017-02-18 06:05:12 -05:00
|
|
|
# Contributing to Verdaccio
|
|
|
|
|
2023-01-28 08:39:37 -05:00
|
|
|
Full text for contributing can be read [here](https://verdaccio.org/community/contributing).
|
2020-09-06 07:56:12 -05:00
|
|
|
|
2023-01-28 08:39:37 -05:00
|
|
|
## Especifics for the branch 5.x
|
2017-05-11 17:39:07 -05:00
|
|
|
|
2023-01-28 08:39:37 -05:00
|
|
|
The 5.x uses `yarn berry` with Plug and Play enabled, thus some advices are required for helping contributing:
|
2017-05-14 03:14:32 -05:00
|
|
|
|
2023-01-28 08:39:37 -05:00
|
|
|
### Debugging Jest
|
2017-05-11 17:39:07 -05:00
|
|
|
|
|
|
|
```bash
|
2023-01-28 08:39:37 -05:00
|
|
|
yarn node --inspect-brk --expose-gc $(yarn bin jest) test --runInBand --silent --logHeapUsage test/unit/modules/api/publish.spec.ts
|
2017-10-18 14:53:40 -05:00
|
|
|
```
|