Add commit-release and npm scripts
... | ... | @@ -14,7 +14,11 @@ |
"test": "mocha --recursive --require @babel/register test && npm run lint", | ||
"test-watch": "mocha --recursive --require @babel/register --watch test", | ||
"lint": "eslint components lib test", | ||
"devtool": "adb shell input keyevent 82" | ||
"devtool": "adb shell input keyevent 82", | ||
"update-version": "./tools/update-version.js", | ||
"build-android-release": "cd android && ./gradlew assembleRelease && cd ..", | ||
"commit-release": "./tools/commit-release", | ||
"release": "npm run update-version && npm run build-android-release && npm run commit-release" | ||
}, | ||
"dependencies": { | ||
"@ptomasroos/react-native-multi-slider": "^1.0.0", | ||
... | ... | @@ -51,8 +55,12 @@ |
"dirty-chai": "^2.0.1", | ||
"eslint": "^5.16.0", | ||
"eslint-plugin-react": "^7.8.2", | ||
"jase": "^1.2.0", | ||
"left-pad": "^1.3.0", | ||
"metro-react-native-babel-preset": "^0.51.1", | ||
"mocha": "^5.2.0" | ||
"mocha": "^5.2.0", | ||
"react-native-version": "^3.1.0", | ||
"readline": "^1.3.0" | ||
}, | ||
"description": "A menstrual cycle tracking app that's open-source and leaves your data on your phone. Use it to track your menstrual cycle or for fertility awareness!", | ||
"main": "index.js", | ||
... | ... |
tools/commit-release
0 → 100755
Please register or sign in to comment