Skip to content

Commit 9786ae1

Browse files
Add missing release scripts
1 parent 7d0425e commit 9786ae1

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"serve": "live-server .",
2020
"watch": "npm run build -- -w",
2121
"build": "tailwindcss -o dist/tailwind.css",
22-
"test": "exit 0"
22+
"test": "exit 0",
23+
"release-channel": "node ./scripts/release-channel.js",
24+
"release-notes": "node ./scripts/release-notes.js"
2325
},
2426
"peerDependencies": {
2527
"tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20"

scripts/release-channel.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Given a version, figure out what the release channel is so that we can publish to the correct
2+
// channel on npm.
3+
//
4+
// E.g.:
5+
//
6+
// 1.2.3 -> latest (default)
7+
// 0.0.0-insiders.ffaa88 -> insiders
8+
// 4.1.0-alpha.4 -> alpha
9+
10+
let version =
11+
process.argv[2] || process.env.npm_package_version || require('../package.json').version
12+
13+
let match = /\d+\.\d+\.\d+-(.*)\.\d+/g.exec(version)
14+
if (match) {
15+
console.log(match[1])
16+
} else {
17+
console.log('latest')
18+
}

scripts/release-notes.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Given a version, figure out what the release notes are so that we can use this to pre-fill the
2+
// relase notes on a GitHub release for the current version.
3+
4+
let path = require('path')
5+
let fs = require('fs')
6+
7+
let version =
8+
process.argv[2] || process.env.npm_package_version || require('../package.json').version
9+
10+
let changelog = fs.readFileSync(path.resolve(__dirname, '..', 'CHANGELOG.md'), 'utf8')
11+
let match = new RegExp(
12+
`## \\[${version}\\] - (.*)\\n\\n([\\s\\S]*?)\\n(?:(?:##\\s)|(?:\\[))`,
13+
'g'
14+
).exec(changelog)
15+
16+
if (match) {
17+
let [, date, notes] = match
18+
console.log(notes.trim())
19+
} else {
20+
console.log(`Placeholder release notes for version: v${version}`)
21+
}

0 commit comments

Comments
 (0)