We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm having this error:
node_modules\kysely\dist\esm\migration\file-migration-provider.js: node_modules\kysely\dist\esm\migration\file-migration-provider.js:Invalid call at line 32: import(/* webpackIgnore: true */(0, _classPrivateFieldLooseBase2.default)(this, _props)[_props].path.join((0, _classPrivateFieldLooseBase2.default)(this, _props)[_props].migrationFolder, fileName))
I applied #this solution but it didn't work. Here is my metro.config.js:
metro.config.js
const { getDefaultConfig } = require("expo/metro-config"); const { mergeConfig } = require("@react-native/metro-config"); const { withNativeWind } = require("nativewind/metro"); const path = require("node:path"); const projectRoot = __dirname; const workspaceRoot = path.resolve(projectRoot, "../.."); const defaultConfig = getDefaultConfig(projectRoot); const config = { resolver: { unstable_enablePackageExports: true, resolveRequest: (context, moduleName, platform) => { if (platform === "web") { if ( ["react-native-prompt-android", "@powersync/react-native"].includes( moduleName, ) ) { return { type: "empty", }; } const mapping = { "react-native": "react-native-web", "@powersync/web": "@powersync/web/dist/index.umd.js", kysely: "kysely/dist/cjs/index.js", }; if (mapping[moduleName]) { console.log("remapping", moduleName); return context.resolveRequest(context, mapping[moduleName], platform); } } else { if (["@powersync/web"].includes(moduleName)) { return { type: "empty", }; } } return context.resolveRequest(context, moduleName, platform); }, transformer: { getTransformOptions: async () => ({ transform: { inlineRequires: { blockList: { [require.resolve("@powersync/react-native")]: true, }, }, }, }), }, watchFolders: [workspaceRoot], nodeModulesPaths: [ path.resolve(projectRoot, "node_modules"), path.resolve(workspaceRoot, "node_modules"), ], disableHierarchicalLookup: true, unstable_enableSymlinks: true, }, }; const mergedConfig = mergeConfig(defaultConfig, config); module.exports = withNativeWind(mergedConfig, { input: "./global.css" });
The text was updated successfully, but these errors were encountered:
@code-504 Are you getting this error on Web or Native?
Sorry, something went wrong.
@michaelbarnes I'm using React Native with Expo, and the problem occurs when running React Native on the web.
Any update on this please
No branches or pull requests
I'm having this error:
I applied #this solution but it didn't work. Here is my
metro.config.js
:The text was updated successfully, but these errors were encountered: