Skip to content
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

Kysely error react native #524

Open
code-504 opened this issue Mar 10, 2025 · 3 comments
Open

Kysely error react native #524

code-504 opened this issue Mar 10, 2025 · 3 comments

Comments

@code-504
Copy link

code-504 commented Mar 10, 2025

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:

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" });

@code-504 code-504 changed the title Kysely error Kysely error react native Mar 10, 2025
@michaelbarnes
Copy link

@code-504 Are you getting this error on Web or Native?

@code-504
Copy link
Author

@michaelbarnes I'm using React Native with Expo, and the problem occurs when running React Native on the web.

@akpor-kofi
Copy link

Any update on this please

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants