Updated Emoji (markdown)

Lauri Ojansivu 2024-06-26 06:55:13 +03:00
parent 95c78642aa
commit bddc5c51f8

@ -157,3 +157,27 @@ Or try to run wekan:
3
```
# Updating
There are usually updates both for npm packages and Meteor
Updating npm packages:
```
npm update
```
Updating to next Meteor release:
```
meteor update
```
Updating to specific Meteor release:
```
meteor update --release METEOR@3.0-rc.4
```
Trying to update all Meteor packages:
```
meteor update --release METEOR@3.0-rc.4 --all-packages
```
Allowing incompatible updates, that may sometime work:
```
meteor update --release METEOR@3.0-rc.4 --all-packages --allow-incompatible-update
```