-
Notifications
You must be signed in to change notification settings - Fork 18
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
When installed in my app and run build I got warnings #42
Comments
I'm not too familiar with |
When you run in CI it sets environment variable called CI. With this variable it takes warnings as errors. I disabled it temporally with setting CI env var to empty value. |
Oh, I get it. So you managed to make it work for now by ignoring the warnings. Not ideal, I'll definitely investigate the issue but can't promise anything for the immediate future. Thanks for reporting it! |
I hit this problem with https://github.com/stefanak-michal/cyphergui/ When you want to test it locally you have to set env variable CI=true and execute |
Thanks a lot! |
I believe this issue stems from the fact that the source maps in the distribution reference the ts files which are not included in the npm package:
There are 2 options to fix this,
|
I have reactjs app with this project. When I run "react-scripts build" I get a lot of these errors:
I don't understand why it tries to reach "src" directory while in my node_modules it contains only "dist". I've added the package with "npm install @memgraph/orb".
It is not problem when I run it locally where it takes it as warnings and build is finished and works. But when I run it in CI it acts like errors and it crash.
What I can do about it?
The text was updated successfully, but these errors were encountered: