React Native Version Update
This project works together with Version Builder and changes the files of the Android and iOS.
Requirements
- React Native project
Setup
npm install --save react-native-version-update
Inside package.json
"scripts": {
...
"version": "node node_modules/react-native-version-update"
}
Parameters
Builder
Passing --builder
, on start it returns the value of the request and adds in the package.json of the project with React Native the attribute buildNumber
.
Date
Passing --date
adds in the package.json of the project with React Native the attribute buildDate
.
Examples
"scripts": {
...
"version": "node node_modules/react-native-version-update --builder=example-app"
}
"scripts": {
...
"version": "node node_modules/react-native-version-update --date --builder=example-app"
}