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 b020893 commit 8be32cbCopy full SHA for 8be32cb
prepare.ts
@@ -47,4 +47,7 @@ const OVERRIDES_DIR = path.join(__dirname, 'overrides');
47
);
48
49
console.log('Override dependencies installed');
50
-})();
+})().catch((e) => {
51
+ console.error(e);
52
+ process.exit(1);
53
+});
0 commit comments