diff options
author | kjeremy <[email protected]> | 2021-02-05 15:57:36 +0000 |
---|---|---|
committer | kjeremy <[email protected]> | 2021-02-05 15:57:36 +0000 |
commit | 8ff69055b93b25a9e9340b51f171cc07c116c88d (patch) | |
tree | 0c886d263f0952fe8545d64d9f815cff7e973843 /docs/dev | |
parent | 2a75594ee894baad5339ff9708ca70f6f69e0a36 (diff) |
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')
-rw-r--r-- | docs/dev/debugging.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/debugging.md b/docs/dev/debugging.md index cc7a790ff..5876e71bc 100644 --- a/docs/dev/debugging.md +++ b/docs/dev/debugging.md | |||
@@ -10,7 +10,7 @@ | |||
10 | - Install all TypeScript dependencies | 10 | - Install all TypeScript dependencies |
11 | ```bash | 11 | ```bash |
12 | cd editors/code | 12 | cd editors/code |
13 | npm install | 13 | npm ci |
14 | ``` | 14 | ``` |
15 | 15 | ||
16 | ## Common knowledge | 16 | ## Common knowledge |