OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/doc/DEVELOP.md

13 lines
387 B

# Developing OpenProject Frontend
## Changing or updating Dependencies
We use `npm shrinkwrap` to lock down both development and runtime dependencies.
When adding or removing dependencies, please adhere to the following workflow:
npm install
npm shrinkwrap --dev
./scripts/clean-shrinkwrap.js
Please commit `npm-shrinkwrap.json` along with any changes to `package.json`.