-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d0425e
commit 9786ae1
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Given a version, figure out what the release notes are so that we can use this to pre-fill the | ||
// relase notes on a GitHub release for the current version. | ||
|
||
let path = require('path') | ||
let fs = require('fs') | ||
|
||
let version = | ||
process.argv[2] || process.env.npm_package_version || require('../package.json').version | ||
|
||
let changelog = fs.readFileSync(path.resolve(__dirname, '..', 'CHANGELOG.md'), 'utf8') | ||
let match = new RegExp( | ||
`## \\[${version}\\] - (.*)\\n\\n([\\s\\S]*?)\\n(?:(?:##\\s)|(?:\\[))`, | ||
'g' | ||
).exec(changelog) | ||
|
||
if (match) { | ||
let [, date, notes] = match | ||
console.log(notes.trim()) | ||
} else { | ||
console.log(`Placeholder release notes for version: v${version}`) | ||
} |