UNPKG

511 BJavaScriptView Raw
1/**
2 * @license
3 * https://github.com/bitcoincashjs/bchaddr
4 * Copyright (c) 2018-2019 Emilio Almansi
5 * Distributed under the MIT software license, see the accompanying
6 * file LICENSE or http://www.opensource.org/licenses/mit-license.php.
7 */
8
9var shell = require('shelljs')
10shell.config.fatal = true
11
12shell.exec('rm -rf dist')
13shell.exec('npm run build')
14shell.exec('git add -A dist')
15shell.exec('npx mustache package.json README.tpl.md', { silent: true }).to('README.md')
16shell.exec('git add -A README.md')