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