0.0.9 • Published 4 years ago

react-native-template-mobile v0.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Link mandatory libraries

You must link some libraries for using this project.

Check the steps at: 1. https://software-mansion.github.io/react-native-gesture-handler/docs/getting-started.html 2. https://github.com/invertase/react-native-firebase 3. (add here others that are mandatory)

Also:

  1. Do not forget to create the environments (debug, staging and release) on the native modules

package.json

Put this lines on your package.json

"husky": {
    "hooks": {
      "pre-commit": "lint-staged && yarn test"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "jest": {
    "preset": "react-native"
  }