-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update readme.md to provide temp workaround (#283)
closes #268
- Loading branch information
1 parent
1b2bc02
commit 3167f05
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -322,6 +322,18 @@ invoke yarn --update-checksums | |
``` | ||
Not everything can be repaired, alack. | ||
|
||
### Cannot install package despite being on correct node version | ||
Nested packages can define its own engine requirements and this might be a temporary workaround. | ||
|
||
If you where to get a similar error when running the install: | ||
```shell | ||
[email protected]: The engine "node" is incompatible with this module. Expected version ">=14.16". Got "14.15.1" | ||
``` | ||
You can run the install command with the following flag `--ignore-engines`. | ||
```shell | ||
yarn add yarn-audit-fix -D --ignore-engines | ||
``` | ||
|
||
## Contributing | ||
Feel free to open any issues: bugs, feature requests or other questions. | ||
You're always welcome to suggest a PR. Just fork this repo, write some code, add some tests and push your changes. | ||
|