about summary refs log tree commit diff
path: root/docs/dev/debugging.md
diff options
context:
space:
mode:
authorkjeremy <kjeremy@gmail.com>2021-02-05 10:57:36 -0500
committerkjeremy <kjeremy@gmail.com>2021-02-05 10:57:36 -0500
commit8ff69055b93b25a9e9340b51f171cc07c116c88d (patch)
tree0c886d263f0952fe8545d64d9f815cff7e973843 /docs/dev/debugging.md
parent2a75594ee894baad5339ff9708ca70f6f69e0a36 (diff)
downloadrust-8ff69055b93b25a9e9340b51f171cc07c116c88d.tar.gz
rust-8ff69055b93b25a9e9340b51f171cc07c116c88d.zip
Do not overwrite lock file
Use `npm ci` instead of `npm install`. `npm install` will overwrite
the lock file if you have a newer npm version than the one that
generated the package-lock.json
Diffstat (limited to 'docs/dev/debugging.md')
-rw-r--r--docs/dev/debugging.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/debugging.md b/docs/dev/debugging.md
index cc7a790ff46..5876e71bcab 100644
--- a/docs/dev/debugging.md
+++ b/docs/dev/debugging.md
@@ -10,7 +10,7 @@
 - Install all TypeScript dependencies
   ```bash
   cd editors/code
-  npm install
+  npm ci
   ```
 
 ## Common knowledge