npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gdulik/react-native-version-up

v1.1.2

Published

Increase version and build number in your react native app for package.json and both platforms (ios && android) with one command

Downloads

3

Readme

This package was forked from react-native-version-up

Please, create pull request to the project if you improve something! It will help us to create hight-quality package together.

React native version upper

Increase major, minor or patch part of the version or build number in your app in package.json and in ios and android projects with one command.

node ./node_modules/@gdulik/react-native-version-up/lib/index.js --patch -m 'commit message'

With this script you can:

  • Increase major, minor or patch part in the version or build number.
  • Make a git commit with version changes.
  • Make a git tag with new version.

Example

> yarn run version:up --patch
$ node ./node_modules/@gdulik/react-native-version-up/lib/index.js "--patch"

I'm going to increase the version in:
  - package.json (./package.json);
  - ios project (./ios/packagename.xcodeproj/project.pbxproj);
  - android project (./android/app/build.gradle).

The version will be changed:
  - on iOS
    - from: 1.4.1 (6);
    - to:   1.4.2 (1).
  - on android
    - from: 1.4.1 (30);
    - to:   1.4.2 (31).

Use "1.4.2" as the next version? [y/n] y

Updating versions
  Updating version in package.json...
    Version in package.json changed.
  Updating version in xcode project...
    Version and build number in ios project (pbxproj file) changed.
  Updating version in android project...
    Version and build number in android project (gradle file) changed.

I'm ready to cooperate with the git!
  I want to make a commit with message:
    "release 1.4.2: increase versions and build numbers"
  I want to add a tag:
    "v1.4.2"
  Do you allow me to do this? [y/n] y
  Commit with files added. Run "git push".

Done!

Installation

yarn add -D react-native-version-up

Or via npm:

npm install react-native-version-up --save-dev

Usage

1. Add command in the section scripts in the package.json

{
  "name": "your-project-name",
  "scripts": {
    "version:up": "node ./node_modules/@gdulik/react-native-version-up/lib/index.js"
  }
}

2. Make sure you have defined the version

{
  "name": "your-project-name",
  "version": "1.0.0",
  "scripts": {
    "version:up": "node ./node_modules/@gdulik/react-native-version-up/lib/index.js"
  }
}

3. Commit the package.json (optional)

git add package.json
git commit -m 'version:up command added'

4. Increase version when needed

yarn version:up --major

Or via npm:

npm run version:up -- --major

Options

You can pass option name and value with following syntax (remember to put -- before options if you are using npm, with yarn this is not needed):

yarn version:up --flag value

| Option | Type | Default value | Description | | ------------------------------ | -------- | ----------------------------------------------------------- | --------------------------------------------------------- | | --major | flag | | Increase major version:0.0.0 -> 1.0.0 | | --minor | flag | | Increase minor version:0.0.0 -> 0.1.0 | | --patch | flag | | Increase patch version:0.0.0 -> 0.0.1 | | --build | flag | | Increase build number:0.0.0(1) -> 0.0.0(2) | | --message or -m | string | "release ${version}: increase versions and build numbers" | Custom commit message. | | --pathToPackage './path' | string | ./package.json | Path to package.json file in your project. | | --pathToPbxproj './path' | string | ./ios/${package.name}.xcodeproj/project.pbxproj | Path to project.pbxproj file (ios project). | | --pathToGradle './path' | string | ./android/app/build.gradle | Path to build.gradle file (android project). |