We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c43106 commit 0a87a14Copy full SHA for 0a87a14
packages/react-native-node-api-modules/src/node/path-utils.ts
@@ -50,7 +50,7 @@ export function isNodeApiModule(modulePath: string): boolean {
50
fs.accessSync(path.join(dir, fileName), fs.constants.R_OK);
51
hasReadable = true;
52
} catch {
53
- throw new Error("skipping unreadable module " + fileName);
+ throw new Error("Found an unreadable module at " + fileName);
54
}
55
56
return hasReadable;
0 commit comments