-
Notifications
You must be signed in to change notification settings - Fork 3
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
Custom env has unresolved ramda dependencies #46
Comments
We are also seeing the same issue, following the same git issue @gmichael27 listed above. Additionally, We have tried targeting specific angular versions with -v13/v12 with no success either. |
Hello, if I remember correctly @GiladShoham fixed the ramda issue in react ui docs app a month ago, so this shouldn't appear anymore (as it's not longer used at all). |
That did it. Ramda and angular were shown as changed when I ran Thank you for your response |
Thanks @ocombe, that did resolve the errors on startup and things boot up fine now. I did want to mention one issue I'm seeing that seems like it may be related, since you mentioned After creating the ng-env, updating workspace.jsonc as above / installing and starting again, code blocks now look like this: Again, this is separate from the original problem but thought it may be related to the fix. |
Interesting, I never noticed that, thanks |
We're running into dependency issues when using a custom Angular env so that we can use Angular Material. Unfortunately, installation of it is not as simple as basic dependencies; the
ng add
schematic does some other behind-the-scenes work and must be run in an Angular app (which we are not using here). This lead us to find a couple existing issues with Angular Material and custom envs which we have used as a guide:#32
#35
To start, we've set up a brand-new Angular workspace out-of-the-box:
https://bit.cloud/teambit/angular/angular
Everything here seems to work fine. Next, we add a custom Angular env:
Following #35 above, we now edit our
workspace.jsonc
to link everything up properly:To be safe, we now delete
node_modules
,yarn.lock
, and runbit capsule delete --all
to clean up all existing dependencies. After, we run:Opening and viewing
angular-material-env
in the client results in the following errors in the console; something appears to be dependent onramda
/ramda-adjunct
, and fails out-of-the-box. We're wondering if there is a missing dependency somewhere, or if we have misconfigured our custom env.Some additional OS information:
The text was updated successfully, but these errors were encountered: