expo-library v1.0.4
expo-library
CLI for creating reusable, modern Expo libraries using Monorepo expo-yarn-workspaces and expo init.
Intro
Install globally
This package requires node >= 10.
install expo-library by
npm install -g expo-libraryCreating a New Library
expo-libraryAnswer some basic prompts about your module, and then the CLI will perform the following steps:
- copy over the template
- install dependencies via yarn or npm
- link packages together for local development
- initialize local git repo
Development
Local development is broken into two parts (ideally using two tabs).
First, go to root dir of newly create library and edit component in index.js/ts file.
Second, go to example/ dir and run metro bundle by
cd example
npm start # runs your expo app bundlerNow, anytime you make a change to your library in index.js or to the example app's example/App.js will fresh refresh component in example.

Publishing to npm
npm publishMake sure that any npm modules you want as peer dependencies are properly marked as peerDependencies in package.json.
Contributing
See the Contributing page.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
License
Copyright (c) 2020 Nomi9995. Licensed under the MIT license.