mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* rename `build-cli.yml` to `prepare-release.yml` In other repo's we will also have a `prepare-release` so this makes it a bit more consistent. * use common CONSTANT_CASE for environment variables * use `strategy` for defining the node version * add script to get the release notes * add release notes to release draft * use CONSTANT_CASE for environment variables * improve consistency for relase related scripts
19 lines
488 B
JavaScript
19 lines
488 B
JavaScript
// Given a version, figure out what the release channel is so that we can publish to the correct
|
|
// channel on npm.
|
|
//
|
|
// E.g.:
|
|
//
|
|
// 1.2.3 -> latest (default)
|
|
// 0.0.0-insiders.ffaa88 -> insiders
|
|
// 4.1.0-alpha.4 -> alpha
|
|
|
|
let version =
|
|
process.argv[2] || process.env.npm_package_version || require('../package.json').version
|
|
|
|
let match = /\d+\.\d+\.\d+-(.*)\.\d+/g.exec(version)
|
|
if (match) {
|
|
console.log(match[1])
|
|
} else {
|
|
console.log('latest')
|
|
}
|