Package Exports
- semantic-release-react-native
- semantic-release-react-native/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (semantic-release-react-native) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
semantic-release-react-native
A Semantic Release plugin for versioning React Native applications.
| Step | Description |
|---|---|
publish |
Update the relevant iOS and Android files with the new version number. |
Installation
npm install semantic-release-react-native -DUsage
The plugin can be configured in the Semantic Release configuration file:
{
"plugins": [
"@semantic-release/commit-analyzer",
"semantic-release-react-native",
]
}Configuration
| Property | Description | Default |
|---|---|---|
androidPath |
Path to your "android/app/build.gradle" file. | android/app/build.gradle |
iosPath |
Path to your "ios/" folder. | ios |
skipBuildNumber |
Do not increment the build number. | false |
skipAndroid |
Skip Android versioning. | false |
skipIos |
Skip iOS versioning. | false |
iosPackageName |
Only update iOS projects that have the given name. | undefined |