You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
370 B
13 lines
370 B
const fs = require('fs');
|
|
const path = require('path');
|
|
const { version } = require('../package.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);
|
|
|