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
In node-semver, with option.includePrerelease: true, any version will satisfies wildcard version reqeust(*).
This should also be supported by deno_semver, which affects the behavior of deno install npm dependencies now.
e.g. when vitepress latest version is 1.0.0-rc.10, run deno run -A npm:vitepress dev will install [email protected], since prerelease version not satisfies *, which should install 1.0.0-rc.10 like pnpm or yarn does ~
The text was updated successfully, but these errors were encountered:
In node-semver, with
option.includePrerelease: true
, any version will satisfies wildcard version reqeust(*
).This should also be supported by
deno_semver
, which affects the behavior of deno install npm dependencies now.e.g. when
vitepress
latest version is1.0.0-rc.10
, rundeno run -A npm:vitepress dev
will install[email protected]
, since prerelease version not satisfies*
, which should install1.0.0-rc.10
like pnpm or yarn does ~The text was updated successfully, but these errors were encountered: