Use with npx without install:
npx capacitor-set-version [options] pathinstall as a development dependency:
npm i -D capacitor-set-versionor install globally:
npm i -g capacitor-set-versionCalling capacitor-set-version will set your Android and iOS app versions to package.json version
as well as increment the app build number.
For Android, build number means the versionCode option, on iOS this will use CFBundleVersion.
If you want, you can specify both version and build number using options flags.
Flags bellow are used to change the default behavior.
USAGE
$ capacitor-set-version DIR
ARGUMENTS
DIR Capacitor project root directory
OPTIONS
-a, --android Android only
-b, --build=10 Set specific build
-h, --help Show help
-i, --ios iOS only
-m, --info Print tool version
-q, --quiet Print only error messages
-v, --version=x.x.x Set specific version
// Set version to 1.2.3
capacitor-set-version -v 1.2.3 ./
// Set version of project on folder ./my-app
capacitor-set-version -v 1.2.3 ./my-app
// Set android version with specific build number for android
capacitor-set-version -a -b 1546 ./
// Set iOS version only
capacitor-set-version -i ./