From 741287b9ecc6b77ccb9085c125d4ebd90715ebda Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Wed, 3 May 2023 12:34:35 -0400 Subject: [PATCH] Add "canary" to list of allowed npm dist tags Forgot this allowlist existed. It's an extra safeguard, in case we mess up the configuration somehow. --- scripts/release/publish-commands/parse-params.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release/publish-commands/parse-params.js b/scripts/release/publish-commands/parse-params.js index f3a21ccf565c9..b7196447d4da8 100644 --- a/scripts/release/publish-commands/parse-params.js +++ b/scripts/release/publish-commands/parse-params.js @@ -41,6 +41,7 @@ module.exports = () => { params.tags.forEach(tag => { switch (tag) { case 'latest': + case 'canary': case 'next': case 'experimental': case 'alpha':