diff options
Diffstat (limited to 'node_modules/tailwindcss/scripts/release-channel.js')
| -rw-r--r-- | node_modules/tailwindcss/scripts/release-channel.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/tailwindcss/scripts/release-channel.js b/node_modules/tailwindcss/scripts/release-channel.js new file mode 100644 index 0000000..0c827f3 --- /dev/null +++ b/node_modules/tailwindcss/scripts/release-channel.js @@ -0,0 +1,18 @@ +// 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') +} |