From c911e77eedd30ef9a6ee1caa7a336caff4d187ea Mon Sep 17 00:00:00 2001 From: Jonathan Graham Date: Tue, 23 Jul 2019 18:41:49 +0100 Subject: [PATCH] fix(docs): npm run commit has been removed (#36451) * fix(docs): npm run commit has been removed * fix(docs): using `npm ci` makes more sense for bootstrapping Signed-off-by: Jonathan --- docs/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index fd7ba69f0e..c865d15d4a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -41,11 +41,10 @@ A quick reference to the commands that you will need when working locally. | command | description | | ------- | ----------- | -| `npm run bootstrap` | Bootstraps the different services. | +| `npm ci` | Bootstraps the different services. | | `npm run seed` | Parse all the challenge markdown files and inserts them into MongoDB. | | `npm run develop` | Starts the freeCodeCamp API Server and Client Applications. | | `npm test` | Run all JS tests in the system, including client, server, lint and challenge tests. | | `npm run test:client` | Run the client test suite. | | `npm run test:curriculum` | Run the curriculum test suite. | | `npm run test:server` | Run the server test suite. | -| `npm run commit` | An interactive tool to help you build a good commit message. |