Updated Emoji (markdown)

Lauri Ojansivu 2024-06-26 06:57:40 +03:00
parent bddc5c51f8
commit 797dc4d342

@ -165,6 +165,20 @@ Updating npm packages:
```
npm update
```
Checking for vulnerable packages:
```
npm audit
```
Fixing vulnerable npm packages by updating to newer packages:
```
npm audit fix
```
If that did not help, use force:
```
npm audit fix --force
```
If that did not help, read links from that `npm audit` command did show, remove deprecated dependencies, update to other maintained dependencies.
Updating to next Meteor release:
```
meteor update