Skip to content

Commit

Permalink
Updated NPN package dependencies (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyscientist authored Oct 20, 2023
1 parent 45b2e5a commit 711e29b
Show file tree
Hide file tree
Showing 3 changed files with 3,098 additions and 2,873 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,23 @@ In a nutshell, these are the steps to set up a development environment:
1. Install `npm` (and `nodejs`, our suggestion: v16).
2. Install JS dependencies with `npm install`.

### Updating NPM packages

The safe way to update packages is to run:

```shell
npm update
```

If you want to upgrade more aggressively (i.e. potentially introduce breaking changes) you can
consider something like this:

```shell
npm install ---no-save npm-check-updates
ncu --upgrade
npm install
```

## Running development servers

### Backend
Expand Down
Loading

0 comments on commit 711e29b

Please sign in to comment.