You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a pnpm monorepo configuration. Within this, I have a workspace (a package) that uses react. Here's a diff of switching to catalog version specifiers:
When I do this and pnpm i in the root of the monorepo, I notice the following lock file changes:
some packages seem to suddenly be "released" from the 17.x restriction? I'm not too familiar with the syntax but something seems off? or am I incorrect? Wanted to raise this before I opened a bug report or something because I'm not sure.
It does seem to be causing tsc (typescript compiler) type build failures in my GitHub action. After several hours, I basically narrowed it down to this change. See the errors below in my GitHub action for publishing the package. I'm essentially building the package, then building types using tsc. The build succeeds but the types build fails:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a pnpm monorepo configuration. Within this, I have a workspace (a package) that uses react. Here's a diff of switching to catalog version specifiers:
When I do this and
pnpm i
in the root of the monorepo, I notice the following lock file changes:some packages seem to suddenly be "released" from the
17.x
restriction? I'm not too familiar with the syntax but something seems off? or am I incorrect? Wanted to raise this before I opened a bug report or something because I'm not sure.It does seem to be causing
tsc
(typescript compiler) type build failures in my GitHub action. After several hours, I basically narrowed it down to this change. See the errors below in my GitHub action for publishing the package. I'm essentially building the package, then building types usingtsc
. The build succeeds but the types build fails:When I revert the catalog change, it works! 😕
Beta Was this translation helpful? Give feedback.
All reactions