expo-library-builder
v1.0.61
Published
a command-line tool for creating an expo library
Downloads
18
Readme
Expo Library Builder
Expo Library Builder is a command-line tool for creating an Expo library template. It helps you set up the directory structure and configuration files necessary for creating an Expo component library.
Installation
You can install Expo Library Builder globally using npm or yarn:
npm install -g expo-library-builder
or
yarn global add expo-library-builder
Usage
To create an Expo library with the specified name, run the following command:
npx expo-library-builder init <name>
Replace with the desired name for your library. This command will create a new directory with the specified name, set up the necessary files and dependencies, and generate an example component.
Development
If you want to contribute to Expo Library Builder or modify the source code, follow these steps:
- Clone the repository:
git clone https://github.com/your-username/expo-library-builder.git
- Install the dependencies:
cd expo-library-builder
npm install
- Test your updates:
npm run test