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
There are lots of issues with strict dependency settings in Live Share, since we use child packages of the fluid-framework package in Live Share. With non-strict settings (default for npm and yarn), node_modules is flat, meaning that you can access child dependencies of packages in your package.json even though you don't explicitly declare it in your package.json. But when in strict, you cannot do that, and thus they need to resolve those manually in pnpm config files. We should try to clean this up in Live Share V2.
The text was updated successfully, but these errors were encountered:
There are lots of issues with strict dependency settings in Live Share, since we use child packages of the
fluid-framework
package in Live Share. With non-strict settings (default for npm and yarn),node_modules
is flat, meaning that you can access child dependencies of packages in your package.json even though you don't explicitly declare it in your package.json. But when in strict, you cannot do that, and thus they need to resolve those manually in pnpm config files. We should try to clean this up in Live Share V2.The text was updated successfully, but these errors were encountered: