Add "canary" to list of allowed npm dist tags (#26767)

Forgot this allowlist existed. It's an extra safeguard, in case we mess
up the configuration somehow.
This commit is contained in:
Andrew Clark 2023-05-03 12:36:34 -04:00 committed by GitHub
parent 8a25302c66
commit 388686f291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ module.exports = () => {
params.tags.forEach(tag => {
switch (tag) {
case 'latest':
case 'canary':
case 'next':
case 'experimental':
case 'alpha':