Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Dec 21, 2023
1 parent d94038f commit 847976a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release-channel.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let version = require(path.resolve(pkgPath, 'package.json')).version
let match = /\d+\.\d+\.\d+-(.*)\.\d+/g.exec(version)
if (match) {
// We want to release alpha to the next channel because it will be the next version
if (match === 'alpha') match = 'next'
if (match[1] === 'alpha') match[1] = 'next'
console.log(match[1])
} else {
console.log('latest')
Expand Down

1 comment on commit 847976a

@vercel
Copy link

@vercel vercel bot commented on 847976a Dec 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

headlessui-vue – ./packages/playground-vue

headlessui-vue-git-main-tailwindlabs.vercel.app
headlessui-vue.vercel.app
headlessui-vue-tailwindlabs.vercel.app

Please sign in to comment.