mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
15 lines
397 B
JavaScript
15 lines
397 B
JavaScript
const manifest = require('../app/manifest.json')
|
|
|
|
const version = manifest.version
|
|
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
const changelog = fs.readFileSync(path.join(__dirname, '..', 'CHANGELOG.md')).toString()
|
|
|
|
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)
|