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