mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
5 lines
159 B
JavaScript
5 lines
159 B
JavaScript
|
let fs = require('fs');
|
||
|
var appjson = require('./app.json');
|
||
|
appjson.expo.ios.buildNumber++;
|
||
|
fs.writeFileSync('./app.json', JSON.stringify(appjson, null, 2));
|