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.
alpha
next
1 parent 13f4cd5 commit 5976b9aCopy full SHA for 5976b9a
scripts/release-channel.js
@@ -22,6 +22,8 @@ let version = require(path.resolve(pkgPath, 'package.json')).version
22
23
let match = /\d+\.\d+\.\d+-(.*)\.\d+/g.exec(version)
24
if (match) {
25
+ // We want to release alpha to the next channel because it will be the next version
26
+ if (match === 'alpha') match = 'next'
27
console.log(match[1])
28
} else {
29
console.log('latest')
0 commit comments