Dependency management
- Keep all the dependencies outside the repository.
- Use go mod as dependency manager.
- Run to enable
go mod
. - Run before sending any changes.
JavaScript dependencies
- Use npm as package manager.
- Run
npm ci
after checking out the repository to install dependencies. - updates packages by creating pull requests for the new releases of used packages. Its pull requests are marked with label.
上一篇:Code conventions
下一篇:Getting started