Merge branch 'sh-yarn-dedupe-docs' into 'master'

Add documentation on how to add dependencies to yarn

See merge request gitlab-org/gitlab-ce!31066
This commit is contained in:
Mike Greiling 2019-07-25 03:14:55 +00:00
commit 003875edc2

View file

@ -15,6 +15,18 @@ Exceptions are made for some tools that we require in the
`gitlab:assets:compile` CI job such as `webpack-bundle-analyzer` to analyze our
production assets post-compile.
To add or upgrade a dependency, run:
```sh
yarn add <your dependency here>
```
This may introduce duplicate dependencies. To de-duplicate `yarn.lock`, run:
```sh
node_modules/.bin/yarn-deduplicate --list --strategy fewer yarn.lock && yarn install
```
---
> TODO: Add Dependencies