UNPKG

@brettdh/standard-version-expo

Version:

Automatic Expo versioning with Standard Version

38 lines (37 loc) 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const helpers_1 = require("../helpers"); const versions_1 = require("../../../versions"); /** * Since a standard-version bumper only receives the contents of a single file, * we add a layer of indirection here and ask the user to supply the sdkVersion * directly. Note that they can choose to pull this from app.json, or even supply * the Android min SDK version if they're not using Expo. * * Configuration example in .versionrc.js: * * const sdkVersion = '37.0.0'; // or pull from app.json * module.exports = [ * ... * { * filename: 'ios/MyApp/Info.plist', * updater: require.resolve('standard-version-expo/ios/native/code')(sdkVersion), * }, * ... * ]; * * This does add the requirement that they use .versionrc.js, not the other formats. */ exports.default = (sdkVersion) => ({ /** * Read the build code from the `CFBundleVersion` property. */ readVersion: helpers_1.iosBuildnumReader, /** * Write the manifest version to the `CFBundleVersion` property. * This uses the Android version code approach of Maxi Rosson. * * @see https://medium.com/@maxirosson/versioning-android-apps-d6ec171cfd82 */ writeVersion: (contents, version) => helpers_1.iosBuildnumWriter(contents, String(versions_1.getVersionCodeFromSdkVersion(sdkVersion, version))), });