mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
14 lines
381 B
JavaScript
14 lines
381 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const { version } = require('../app/manifest/_base.json');
|
|
|
|
const changelog = fs.readFileSync(
|
|
path.join(__dirname, '..', 'CHANGELOG.md'),
|
|
'utf8',
|
|
);
|
|
|
|
const log = changelog.split(version)[1].split('##')[0].trim();
|
|
const msg = `*MetaMask ${version}* now published! It should auto-update soon!\n${log}`;
|
|
|
|
console.log(msg);
|