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.
14 lines
390 B
14 lines
390 B
#!/usr/bin/env node
|
|
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);
|
|
|