-
Notifications
You must be signed in to change notification settings - Fork 958
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
Unable to resolve module @eva-design/processor #757
Comments
Hi! 👋 Thanks for reporting |
As a workaround, change the following file: from ...
import React from 'react';
import merge from 'lodash.merge';
/* THIS LINE => */ import { SchemaProcessor } from '../../../../node_modules/@eva-design/processor';
import { StyleProvider } from '../style/styleProvider.component';
import { ModalPanel } from '../modal/modalPanel.component';
... to ...
import React from 'react';
import merge from 'lodash.merge';
/* THIS LINE => */ import { SchemaProcessor } from '../../node_modules/@eva-design/processor';
import { StyleProvider } from '../style/styleProvider.component';
import { ModalPanel } from '../modal/modalPanel.component';
... |
@PasinduDineth @stay2be |
Works now. Thanks @artyorsh ! |
Works fine mate. Thanks! |
I have installed libraries using the provided code of the documentation.
npm un -g react-native-cli && npm i -g @react-native-community/cli npx
Then created a new project using the provided code
npx react-native init MyApp --template @ui-kitten/template-js
After that, I used react-native run-android to start the app. Then I got the following issue.
bundling failed: Error: Unable to resolve module
../../../../node_modules/@eva-design/processorfrom
node_modules/@ui-kitten/components/theme/application/applicationProvider.component.js:
How to fix this?
The text was updated successfully, but these errors were encountered: