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
I don't know if there is any reasonable solution here, may be somehow possible to install from git exported archive which could do some subs for strings and provide some idea of a version?
❯ deno compile -o /tmp/bids-validator-deno -A bids-validator/bids-validator/src/bids-validator.ts
Check file:///tmp/bids-validator/bids-validator/src/bids-validator.ts
Compile file:///tmp/bids-validator/bids-validator/src/bids-validator.ts to /tmp/bids-validator-deno
Archive: /home/yoh/.tmp/.tmp928ec7/denort.zip
inflating: denort
deno compile -o /tmp/bids-validator-deno -A 7.97s user 0.49s system 220% cpu 3.842 total
❯ /tmp/bids-validator-deno --version
bids-validator v1.14.7-dev.0-62-gbd302130
The text was updated successfully, but these errors were encountered:
We haven't yet released since adding in version information, so the version on deno.land still says alpha. deno.land only hosts tags, it's not just a copy of the repository.
There's not much to do if you build directly from a git branch. It will tell you the $REF that you entered because all it has to go on is a URL.
❯ deno run --reload -A https://deno.land/x/[email protected]/bids-validator.ts --versionbids-validator v1.14.8
❯ deno run --reload -A https://raw.githubusercontent.com/bids-standard/bids-validator/v1.14.8/bids-validator/src/bids-validator.ts --versionbids-validator v1.14.8
❯ deno run --reload -A https://raw.githubusercontent.com/bids-standard/bids-validator/master/bids-validator/src/bids-validator.ts --versionbids-validator master
That said:
❯ deno run --reload -A https://deno.land/x/bids_validator/bids-validator.ts --versionWarning Implicitly using latest version (v1.14.9-dev.0) for https://deno.land/x/bids_validator/bids-validator.tserror: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'split') return url.pathname.split('@')[1].split('/')[0] ^ at getRemoteVersion (https://deno.land/x/[email protected]/version.ts:50:38) at getVersion (https://deno.land/x/[email protected]/version.ts:30:15) at parseOptions (https://deno.land/x/[email protected]/setup/options.ts:51:25) at main (https://deno.land/x/[email protected]/main.ts:11:25) at https://deno.land/x/[email protected]/bids-validator.ts:3:22
I don't know if there is any reasonable solution here, may be somehow possible to install from git exported archive which could do some subs for strings and provide some idea of a version?
even from a tag it is kinda not so good
It looks good if I compile from a local clone:
The text was updated successfully, but these errors were encountered: