-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type SyntaxError - RN VERSION 0.68.2, typescript 4.1.6 #79
Comments
What is the TypeScript version? This seems to be a TypeScript error. |
"typescript": "4.1.6", |
Can you upgrade the TypeScript version of this project to 5 or higher? |
Update all packages versions to 0.6.5 and try it out. It appears to be resolved. After scaffolding with my version 0.68.2, I didn’t encounter that type error. |
Had the same issue on
Created my own patch-package for this diff --git a/node_modules/@hot-updater/react-native/src/index.ts b/node_modules/@hot-updater/react-native/src/index.ts
index 462a335..bb152d3 100644
--- a/node_modules/@hot-updater/react-native/src/index.ts
+++ b/node_modules/@hot-updater/react-native/src/index.ts
@@ -10,8 +10,8 @@ import { runUpdateProcess } from "./runUpdateProcess";
import { hotUpdaterStore } from "./store";
import { wrap } from "./wrap";
-export type * from "./wrap";
-export type * from "./native";
+export * from "./wrap";
+export * from "./native";
export * from "./store"; But let me try out your new release tomorrow. |
RN VERSION: 0.68.2
is there related with RN version?
The text was updated successfully, but these errors were encountered: