You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: resources/docs/dev/get-started/update.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,5 +6,24 @@ WIP...
6
6
7
7
-[🔄 Update](#-update)
8
8
-[🔸 Local](#-local)
9
+
-[🔸 Production](#-production)
9
10
10
11
## 🔸 Local
12
+
13
+
To updated dependencies automatically there is a script in `.scripts/local` directory.
14
+
15
+
```bash
16
+
# linux/unix
17
+
sh .scripts/local/bump.sh
18
+
19
+
# windows
20
+
.scripts\local\bump.bat
21
+
```
22
+
23
+
Before accepting the changes, you should review the changes and make sure that the stability of the project is not affected.
24
+
25
+
> {info} This script will update dependencies with [npm-check-updates](https://github.com/raineorshine/npm-check-updates) and `composer update` tools. Just updates the dependencies to the latest minor and patch version. You can modify the script for your needs.
26
+
27
+
## 🔸 Production
28
+
29
+
In production or cloud environment, you should update dependencies with your CI/CD pipeline.
0 commit comments