├── .dependabot └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .huskyrc.json ├── .lintstagedrc.json ├── .npmignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cli.js ├── docs.sh ├── index.js ├── package.json ├── test.sh ├── test ├── amend.js ├── amend.skipTag.js ├── default.js ├── default.skipTag.js ├── fixtures │ ├── AwesomeProject │ │ ├── android │ │ │ └── app │ │ │ │ └── build.gradle │ │ ├── app.json │ │ ├── ios │ │ │ ├── AwesomeProject-tvOS │ │ │ │ └── Info.plist │ │ │ ├── AwesomeProject-tvOSTests │ │ │ │ └── Info.plist │ │ │ ├── AwesomeProject.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── AwesomeProject │ │ │ │ └── Info.plist │ │ │ └── AwesomeProjectTests │ │ │ │ └── Info.plist │ │ ├── node_modules │ │ │ └── react-native │ │ │ │ ├── LICENSE │ │ │ │ ├── Libraries │ │ │ │ └── react-native │ │ │ │ │ └── react-native-implementation.js │ │ │ │ └── package.json │ │ └── package.json │ ├── index.js │ ├── my-new-project │ │ ├── app.json │ │ ├── node_modules │ │ │ ├── expo │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ └── Expo.js │ │ │ └── react-native │ │ │ │ ├── LICENSE │ │ │ │ ├── Libraries │ │ │ │ └── react-native │ │ │ │ │ └── react-native-implementation.js │ │ │ │ └── package.json │ │ └── package.json │ ├── tree.json │ └── version.json ├── generateBuild.js ├── helpers │ ├── apiMacro.js │ ├── beforeEach.js │ ├── cliMacro.js │ ├── execAsync.js │ ├── getCurrCommitHash.js │ ├── getCurrTagHash.js │ ├── getCurrTree.js │ ├── getCurrVersion.js │ ├── getTestProjects.js │ ├── gitPathnames.js │ ├── npmScriptsMacro.js │ └── tempInitAndVersion.js ├── incrementBuild.js ├── neverAmend.js ├── neverIncrementBuild.js ├── resetBuild.js ├── setBuild.js └── shortBundleVerions.js ├── util.js └── yarn.lock /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | yarn.lock -diff 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/cli.js -------------------------------------------------------------------------------- /docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/docs.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test.sh -------------------------------------------------------------------------------- /test/amend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/amend.js -------------------------------------------------------------------------------- /test/amend.skipTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/amend.skipTag.js -------------------------------------------------------------------------------- /test/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/default.js -------------------------------------------------------------------------------- /test/default.skipTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/default.skipTag.js -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/android/app/build.gradle -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/app.json -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/ios/AwesomeProject-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/ios/AwesomeProject-tvOS/Info.plist -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/ios/AwesomeProject-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/ios/AwesomeProject-tvOSTests/Info.plist -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/ios/AwesomeProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/ios/AwesomeProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/ios/AwesomeProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/ios/AwesomeProject/Info.plist -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/ios/AwesomeProjectTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/ios/AwesomeProjectTests/Info.plist -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/node_modules/react-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/node_modules/react-native/LICENSE -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/node_modules/react-native/Libraries/react-native/react-native-implementation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/node_modules/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/node_modules/react-native/package.json -------------------------------------------------------------------------------- /test/fixtures/AwesomeProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/AwesomeProject/package.json -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/index.js -------------------------------------------------------------------------------- /test/fixtures/my-new-project/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/my-new-project/app.json -------------------------------------------------------------------------------- /test/fixtures/my-new-project/node_modules/expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/my-new-project/node_modules/expo/package.json -------------------------------------------------------------------------------- /test/fixtures/my-new-project/node_modules/expo/src/Expo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/my-new-project/node_modules/react-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/my-new-project/node_modules/react-native/LICENSE -------------------------------------------------------------------------------- /test/fixtures/my-new-project/node_modules/react-native/Libraries/react-native/react-native-implementation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/my-new-project/node_modules/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/my-new-project/node_modules/react-native/package.json -------------------------------------------------------------------------------- /test/fixtures/my-new-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/my-new-project/package.json -------------------------------------------------------------------------------- /test/fixtures/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/tree.json -------------------------------------------------------------------------------- /test/fixtures/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/fixtures/version.json -------------------------------------------------------------------------------- /test/generateBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/generateBuild.js -------------------------------------------------------------------------------- /test/helpers/apiMacro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/apiMacro.js -------------------------------------------------------------------------------- /test/helpers/beforeEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/beforeEach.js -------------------------------------------------------------------------------- /test/helpers/cliMacro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/cliMacro.js -------------------------------------------------------------------------------- /test/helpers/execAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/execAsync.js -------------------------------------------------------------------------------- /test/helpers/getCurrCommitHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/getCurrCommitHash.js -------------------------------------------------------------------------------- /test/helpers/getCurrTagHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/getCurrTagHash.js -------------------------------------------------------------------------------- /test/helpers/getCurrTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/getCurrTree.js -------------------------------------------------------------------------------- /test/helpers/getCurrVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/getCurrVersion.js -------------------------------------------------------------------------------- /test/helpers/getTestProjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/getTestProjects.js -------------------------------------------------------------------------------- /test/helpers/gitPathnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/gitPathnames.js -------------------------------------------------------------------------------- /test/helpers/npmScriptsMacro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/npmScriptsMacro.js -------------------------------------------------------------------------------- /test/helpers/tempInitAndVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/helpers/tempInitAndVersion.js -------------------------------------------------------------------------------- /test/incrementBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/incrementBuild.js -------------------------------------------------------------------------------- /test/neverAmend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/neverAmend.js -------------------------------------------------------------------------------- /test/neverIncrementBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/neverIncrementBuild.js -------------------------------------------------------------------------------- /test/resetBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/resetBuild.js -------------------------------------------------------------------------------- /test/setBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/setBuild.js -------------------------------------------------------------------------------- /test/shortBundleVerions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/test/shortBundleVerions.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/util.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stovmascript/react-native-version/HEAD/yarn.lock --------------------------------------------------------------------------------