File tree 1 file changed +34
-3
lines changed
1 file changed +34
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,27 @@ declare global {
13
13
var __PrismaProxy : PrismaProxy | undefined ;
14
14
}
15
15
16
+ const errorResolutions = [
17
+ `1. Ensure at least one migration exists:
18
+
19
+ $ prisma migrate dev` ,
20
+
21
+ `2. Try removing the node_modules/ folder and running the prebuild command:
22
+
23
+ $ rm -rf node_modules/
24
+ $ npx expo prebuild --clean
25
+ ` ,
26
+ `3. If in a monorepo, ensure the application's package.json also has the required Prisma dependencies:
27
+
28
+ $ npm i @prisma/client@latest @prisma/react-native@latest react-native-quick-base64
29
+ $ yarn add @prisma/client@latest @prisma/react-native@latest react-native-quick-base64
30
+ ` ,
31
+ ] ;
32
+
33
+ const makeErrorMessage = ( message : string ) => {
34
+ return [ message , errorResolutions . join ( '\n\n' ) ] . join ( '\n\n' ) ;
35
+ } ;
36
+
16
37
// @ts -expect-error
17
38
const isTurboModuleEnabled = global . __turboModuleProxy != null ;
18
39
@@ -21,13 +42,23 @@ const PrismaModule = isTurboModuleEnabled
21
42
: NativeModules . Prisma ;
22
43
23
44
if ( ! PrismaModule ) {
24
- throw new Error ( '🟥 @prisma/react-native failed to initialize' ) ;
45
+ throw new Error (
46
+ makeErrorMessage ( '🟥 @prisma/react-native failed to initialize' )
47
+ ) ;
25
48
}
26
49
27
- PrismaModule . install ( ) ;
50
+ try {
51
+ PrismaModule . install ( ) ;
52
+ } catch {
53
+ throw new Error (
54
+ makeErrorMessage ( `🟥 @prisma/react-native failed to install` )
55
+ ) ;
56
+ }
28
57
29
58
if ( ! global . __PrismaProxy ) {
30
- throw new Error ( '🟥 prisma/react-native C++ bindings failed to initialize' ) ;
59
+ throw new Error (
60
+ makeErrorMessage ( '🟥 prisma/react-native C++ bindings failed to initialize' )
61
+ ) ;
31
62
}
32
63
33
64
// Wrap the create function to stringify the env variables if necessary
You can’t perform that action at this time.
0 commit comments