Changje Jeong
Changje Jeong
Closes #2031
@timrogers Hi! I'm using yarn v1 and followings are package installation versions info of @octokit/* in my `yarn.lock`. yarn.lock "@octokit/app@^13.0.5": version "13.0.8" resolved "https://registry.yarnpkg.com/@octokit/app/-/app-13.0.8.tgz#9f0c811b56eab90c3ee678bc6ae9aa4e48481b3d" integrity sha512-rfU7PY8gxZugDUMkNAgXhaUQuOvZWuhclCkc1Np50QYsYM3+HswoJGgOwiRMnuema1qMxBbeeAFnVVCjcIWisA== dependencies: "@octokit/auth-app" "^4.0.0" "@octokit/auth-unauthenticated"...
@jakepgoldman I leveraged the same problem by adding resolutions in `package.json`. ```json5 { // Add the following config in package.json "resolutions": { "react-pdf/**/canvas": "link:./node_modules/.cache/null", "pdfjs-dist/canvas": "link:./node_modules/.cache/null" } } ``` The...