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: docs/src/content/docs/guides/upgrading-deps.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,10 +31,10 @@ pnpm run doctor ## check for any issues with the dependencies you added to your
31
31
pnpm lint ## linting
32
32
pnpm type-check ## type checking
33
33
pnpm test## tests
34
-
pnpm prebuild -clean ## clean ios and android build folders and regenerate them
34
+
pnpm prebuild --clean ## clean ios and android build folders and regenerate them
35
35
pnpm ios ## run ios build
36
36
pnpm android ## run android build
37
-
pnpm start --cc## start the server
37
+
pnpm start --clear## start the server
38
38
```
39
39
40
40
:::info
@@ -78,10 +78,10 @@ pnpm install ## install new dependencies
78
78
pnpm lint ## linting
79
79
pnpm type-check ## type checking
80
80
pnpm test## tests
81
-
pnpm prebuild -clean ## clean ios and android build folders and regenerate them
81
+
pnpm prebuild --clean ## clean ios and android build folders and regenerate them
82
82
pnpm ios ## run ios build
83
83
pnpm android ## run android build
84
-
pnpm start --cc## start the server
84
+
pnpm start --clear## start the server
85
85
```
86
86
87
87
Unfortunately, there is no magic trick here in case you have any issues while running your checks, Fixing those errors may require some manual effort. You can start by reading the error message and identifying any relevant packages that may be causing the issue. Check the changelog of those packages to see if there have been any recent updates that might have introduced breaking changes. This will help you to pinpoint the root cause of the issue and take the necessary steps to resolve it.
@@ -144,10 +144,10 @@ pnpm install ## install new dependencies
144
144
pnpm lint ## linting
145
145
pnpm type-check ## type checking
146
146
pnpm test## tests
147
-
pnpm prebuild -clean ## clean ios and Android build folders and regenerate them
147
+
pnpm prebuild --clean ## clean ios and Android build folders and regenerate them
148
148
pnpm ios ## run ios build
149
149
pnpm android ## run android build
150
-
pnpm start --cc## start the server
150
+
pnpm start --clear## start the server
151
151
```
152
152
153
153
If you are lucky enough and everything works as expected without any issues, you can now update the rest of the dependencies.
0 commit comments