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 i try to install with this command: deno install -qAn vr https://deno.land/x/[email protected]/cli.ts
or run script with vr run [script-name], i got this error:
error: TS2339 [ERROR]: Property 'operator' does not exist on type 'never'.
if (high!.operator === comp || high!.operator === ecomp) {
~~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1744:15
TS2339 [ERROR]: Property 'operator' does not exist on type 'never'.
if (high!.operator === comp || high!.operator === ecomp) {
~~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1744:42
TS2339 [ERROR]: Property 'operator' does not exist on type 'never'.
(!low!.operator || low!.operator === comp) &&
~~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1751:14
TS2339 [ERROR]: Property 'operator' does not exist on type 'never'.
(!low!.operator || low!.operator === comp) &&
~~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1751:31
TS2339 [ERROR]: Property 'semver' does not exist on type 'never'.
ltefn(version, low!.semver)
~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1752:27
TS2339 [ERROR]: Property 'operator' does not exist on type 'never'.
} else if (low!.operator === ecomp && ltfn(version, low!.semver)) {
~~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1755:21
TS2339 [ERROR]: Property 'semver' does not exist on type 'never'.
} else if (low!.operator === ecomp && ltfn(version, low!.semver)) {
~~~~~~
at https://deno.land/x/[email protected]/mod.ts:1755:62
Found 7 errors.
The text was updated successfully, but these errors were encountered:
Hey @disyam and @domino2, thanks for reporting this!
Both Velociraptor and Hatcher (used by vr) depend on this version of semver causing the errors. I've updated it here but we'll have to wait for them to do the same in order to release a new working version.
In the meantime, please install vr with the --no-check flag on Deno 1.11.0 to bypass those type checks:
deno version: 1.11.0
os: fedora 34
when i try to install with this command:
deno install -qAn vr https://deno.land/x/[email protected]/cli.ts
or run script with
vr run [script-name]
, i got this error:The text was updated successfully, but these errors were encountered: