We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nightly
1 parent fedb63f commit de51475Copy full SHA for de51475
src/context.ts
@@ -66,7 +66,7 @@ function getCLI () {
66
for (const _key in knownCLIs) {
67
const key = _key as keyof typeof knownCLIs
68
if (entry.includes(key)) {
69
- const edge = entry.includes('-edge') ? '-edge' : ''
+ const edge = entry.includes('-edge') ? '-edge' : (entry.includes('-nightly') ? '-nightly' : '')
70
return knownCLIs[key] + edge
71
}
72
0 commit comments