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
When inspecting semver ranges, syncpack only looks at ^, ~ etc. but it could also ensure that instances in a semver group are all file: or alias dependencies etc.
// Testing file: dependencies for build-common across the repo. I wanted to at// least guarantee that a file: dependency was being used, but syncpack doesn't// seem to support that without the file path being the same everywhere, which// doesn't work in our repo.{label: 'build-common should be a file: dependency',dependencies: ['@fluidframework/build-common'],packages: ['**'],isIgnored: true,}
Suggested Solution
All of the specifierTypes used to target instances could be used in place of the range property as additional allowed values.
The text was updated successfully, but these errors were encountered:
Description
When inspecting semver ranges, syncpack only looks at
^
,~
etc. but it could also ensure that instances in a semver group are allfile:
oralias
dependencies etc.Use case (microsoft/FluidFramework#19637)
Suggested Solution
All of the
specifierTypes
used to target instances could be used in place of therange
property as additional allowed values.The text was updated successfully, but these errors were encountered: