Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

standard-version-expo-2

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

standard-version-expo-2

Automatic Expo versioning with Standard Version

  • 1.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Standard Version Expo 2

Automatic Expo versioning with Standard Version

releases builds guide



npm i -D standard-version@next standard-version-expo-2

Note

standard-version-expo-2 is an enhancement of expo-community/standard-version-expo. The original repository is no longer maintained and has pull requests pending response.

What's inside?

Standard version is a tool to automate the versioning of your project using semver and conventional commits. This package includes some helpful bumpers to update the Expo manifest automatically. With these bumpers you can automate updating the version, Android versionCode, and/or iOS buildNumber. You should be able to automate versioning of your app by using a single command, like:

$ npx standard-version --release-as minor

If you receive an error like Invalid Version: undefined, make sure your package.json has a starting version.

Getting started

It's recommended to install both Standard Version and this package as devDependency. You can do this with the npm command listed at the top of this read me. After you installed the packages, we need to configure Standard Version using any of the configuration methods listed here. Here is an example configuration that updates the version, Android versionCode, and iOS buildNumber using the recommended approaches.

// .versionrc.js
module.exports = {
  bumpFiles: [
    {
      filename: 'package.json',
    },
    {
      filename: 'app.json',
      updater: require.resolve('standard-version-expo-2'),
    },
    {
      filename: 'app.json',
      updater: require.resolve('standard-version-expo-2/android'),
    },
    {
      filename: 'app.json',
      updater: require.resolve('standard-version-expo-2/ios'),
    },
  ],
};

To test if your configuration works as expected, you can run standard version in dry mode. This shows you what will happen, without actually applying the versions and tags.

$ npx standard-version --dry-run

Usage

Standard Version's version bumpers are pretty simple; each bump only updates a single file using a single updater. This package exposes multiple kinds of updaters, for different areas of the manifest. You can "compose" your own set of bumpFiles entries to suit your needs.

updaterexampledescription
<root>3.2.1alias of manifest/version
manifest3.2.1alias of manifest/version
manifest/version3.2.1Replace expo.version with the exact calculated semver. (recommended)
android360030201alias of android/code
android/code350010000Replace expo.android.versionCode with the method described by Maxi Rosson.
android/code-with-prerelease30201000Replace expo.android.versionCode with the method described by Maxi Rosson. (recommended)
android/timestamp1642622748128Replace expo.android.versionCode with the result of Date.now().
android/increment8Replace expo.android.versionCode with an incremental version.
ios3.2.1alias of ios/version
ios/code360030201Replace expo.ios.buildNumber with the method described by Maxi Rosson.
ios/code-with-prerelease30201000Replace expo.ios.buildNumber with the method described by Maxi Rosson.
ios/timestamp1642622748128Replace expo.ios.buildNumber with the result of Date.now().
ios/increment9Replace expo.ios.buildNumber with an incremental version.
ios/version3.2.1Replace expo.ios.buildNumber with the exact calculated semver. (recommended)

Version code

Semver is one of the most popular versioning methods; it generates a string with a syntax that even humans can read. Unfortunately, in Android, we are limited to use a numeric versionCode as version. The version code uses an approach from Maxi Rosson to calculate a numeric value from semver. It's a deterministic solution that removes some of the ambiguity of incremental build numbers, like security-patching old versions.

The method initially uses the Android minimum API level. For Expo, we replaced this with the major Expo SDK version.

Version code with prerelease

Allows to obtain the version code of a target version taking into account the pre-release.

It is designed for Android inspired by Maxi Rosson's approach and to solve this problem

This method takes into account pre-release tags and defines an equivalence in integer value. (alpha:1; beta:2; rc:3)

img-version-code-with-prerelease


with :heart: byPeniel
from standard-version-expo ByCedric

Keywords

FAQs

Package last updated on 17 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc