Skip to content

Commit 65d92d9

Browse files
committed
docs: update NPM upgrade instructions
1 parent f33162e commit 65d92d9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,27 +65,27 @@ To release the backlog notifier do the following:
6565
```shell
6666
npm outdated
6767
```
68-
1. Security check (Use `npm audit fix` to fix vulnerabilities)
68+
2. Security check (Use `npm audit fix` to fix vulnerabilities)
6969
```shell
7070
npm audit
7171
```
72-
1. Update all the packages listed to the latest version (specified by the \fBtag\fR config ⟨/using-npm/config#tag⟩), respecting the semver constraints of both your package and its dependencies (if they also require the same package).
72+
3. Update all the packages listed to the latest version (specified by the \fBtag\fR config ⟨/using-npm/config#tag⟩), respecting the semver constraints of both your package and its dependencies (if they also require the same package).
7373
```shell
7474
npm update --save
7575
```
76-
1. Update package.json to latest versions (🚨 skip this since it does not seem to respect semver constraints)
76+
4. Update package.json to latest versions (🚨 skip this since it does not seem to respect semver constraints)
7777
```shell
7878
npx npm-check-updates -u
7979
```
80-
1. Install with updated versions
80+
5. Install with updated versions
8181
```shell
8282
npm install
8383
```
84-
1. Test your app
84+
6. Test your app
8585
```shell
8686
npm test
8787
```
88-
1. If issues, check peer dependencies
88+
7. If issues, check peer dependencies
8989
```shell
9090
npm ls
9191
```

0 commit comments

Comments
 (0)