-
Notifications
You must be signed in to change notification settings - Fork 73
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
[BUG] using this lib with expo web fails during bundling #236
Comments
mirceanis
added a commit
that referenced
this issue
Jun 29, 2022
I also have this issue when using |
I was able to work around this issue by forcing this lib through the transpiler again: npm i -D @expo/webpack-config // filename: webpack.config.js
const createExpoWebpackConfigAsync = require('@expo/webpack-config');
module.exports = async function(env, argv) {
const config = await createExpoWebpackConfigAsync({
...env,
babel: {
dangerouslyAddModulePathsToTranspile: ['did-jwt', 'ethr-did-resolver']
}
}, argv);
return config;
}; |
This was referenced Jul 5, 2022
mirceanis
added a commit
that referenced
this issue
Jul 21, 2022
🎉 This issue has been resolved in version 6.2.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
using
@babel/plugin-proposal-nullish-coalescing-operator
doesn't solve it.The text was updated successfully, but these errors were encountered: