Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 662 Bytes

Dependencies.md

File metadata and controls

44 lines (26 loc) · 662 Bytes

Dependencies

Package manager

Yarn is preferred over npm for local development of aragonCLI.

Dependabot

We have setup [dependabot][dependabot-home] to take care of updating dependencies to their latest versions.

Lock files

We are using yarn.lock and auto-generated [npm shrinkwrap files][https://docs.npmjs.com/cli/shrinkwrap.html].

Out of date dependencies

To check outdated dependencies:

yarn outdated

Tips

  • To pin a dependency:
yarn add --exact [email protected]
  • To downgrade a dependency:
yarn add ignore@4
  • To upgrade a dependency:
yarn add ignore@latest