├── .gitignore ├── README.md ├── bin └── nativeup └── template ├── .eslintrc.js ├── .npmrc ├── .prettierrc.js ├── App.js ├── App.spec.js ├── README.cli.md └── README.expo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/README.md -------------------------------------------------------------------------------- /bin/nativeup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/bin/nativeup -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /template/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/.prettierrc.js -------------------------------------------------------------------------------- /template/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/App.js -------------------------------------------------------------------------------- /template/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/App.spec.js -------------------------------------------------------------------------------- /template/README.cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/README.cli.md -------------------------------------------------------------------------------- /template/README.expo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingItWrong/nativeup/HEAD/template/README.expo.md --------------------------------------------------------------------------------