Skip to content

Commit

Permalink
Merge pull request #1283 from fermyon/tpmccallum-patch-43
Browse files Browse the repository at this point in the history
Use npm ci instead of npm install
  • Loading branch information
tpmccallum committed May 10, 2024
2 parents fd88b9c + 42b7257 commit c3f4ed2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/spin/v2/contributing-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,12 +296,12 @@ If you create content with many headings it is highly recommended to place a ToC

Once you are satisfied with your contribution, you can programmatically check your content.

If you have not done so already, please go ahead and perform the `npm install` command; to enable Node dependencies such as `markdownlint-cli2`. Simply run the following command, from the root of the developer repository:
If you have not done so already, please go ahead and perform the `npm ci` (npm clean install) command; to enable Node dependencies such as `markdownlint-cli2`. Simply run the following command, from the root of the developer repository:

<!-- @selectiveCpy -->

```bash
$ npm install
$ npm ci
```

On top of the Node dependencies the `timeout` executable must be installed on your system and added to the `PATH` environment variable. The `timeout` executable is included in the [gnu coreutils package](https://www.gnu.org/software/coreutils/) which should be present in most Linux distributions.
Expand Down Expand Up @@ -456,9 +456,9 @@ You can host your changes to the developer documentation on your own machine (lo
<!-- @selectiveCpy -->

```bash
$ npm install
$ npm ci
$ cd spin-up-hub
$ npm install
$ npm ci
$ cd ..
$ spin build
$ spin up -e "PREVIEW_MODE=1"
Expand Down

0 comments on commit c3f4ed2

Please sign in to comment.