()
| 44 | } |
| 45 | |
| 46 | function getReleaseNote() { |
| 47 | return `${ |
| 48 | process.env.PRERELEASE === 'true' |
| 49 | ? `\ |
| 50 | **This is a beta release of Violentmonkey (also in [WebStore](\ |
| 51 | https://chrome.google.com/webstore/detail/violentmonkey-beta/opokoaglpekkimldnlggpoagmjegichg\ |
| 52 | )), use it at your own risk.**<br>\ |
| 53 | If you already use Violentmonkey, click \`Export to zip\` in settings before installing the beta. |
| 54 | |
| 55 | ` |
| 56 | : '' |
| 57 | }Notable changes since ${listCommits()}`; |
| 58 | } |
| 59 | |
| 60 | export async function createRelease() { |
| 61 | console.info('Create release:', tag); |
no test coverage detected