summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-07-23 10:28:23 -0700
committerStan Hu <stanhu@gmail.com>2019-07-23 10:29:57 -0700
commit928b9a105516a53d956666449e8b42974ced3267 (patch)
tree08a875615e0e2a544c9f1a02466af42040a26577
parentb5cc47bda6cefc1aa75e9e388f656609246ca326 (diff)
downloadgitlab-ce-928b9a105516a53d956666449e8b42974ced3267.tar.gz
Add documentation on how to add dependencies to yarnsh-yarn-dedupe-docs
Danger constantly warns about de-duplicating dependencies, so put these instructions in the documentation so they can be searched.
-rw-r--r--doc/development/new_fe_guide/dependencies.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/development/new_fe_guide/dependencies.md b/doc/development/new_fe_guide/dependencies.md
index 12a4f089d41..8a6930acd37 100644
--- a/doc/development/new_fe_guide/dependencies.md
+++ b/doc/development/new_fe_guide/dependencies.md
@@ -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