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 vitepress@0.22.4, since prerelease version not satisfies *, which should install 1.0.0-rc.10 like pnpm or yarn does ~
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
vitepresslatest version is1.0.0-rc.10, rundeno run -A npm:vitepress devwill installvitepress@0.22.4, since prerelease version not satisfies*, which should install1.0.0-rc.10like pnpm or yarn does ~