# @bit-ui-libs/mobile

mobile library

## Installation

```sh
npm install @bit-ui-libs/mobile
```

## Usage

```js
import { multiply } from '@bit-ui-libs/mobile';

// ...

const result = await multiply(3, 7);
```

## Auto-update `@bit-ui-libs/mobile` in project

Add this local project to your target project's `node_modules`
```
npx wml add . /Users/xxx/bit-chainit-mobile/node_modules/@bit-ui-libs/mobile
```

Example output:
```
Ok to proceed? (y) Y
? Source folder is a git repo, add `.git` to ignored folders? Yes
? Source folder is an npm package, add `node_modules` to ignored folders? Yes
Added link: (0) /Users/xxx/bit-ui-libs-mobile -> /Users/xxx/bit-chainit-mobile/node_modules/@bit-ui-libs/mobile
```

Start watching
```
npx wml start
```

### Troubleshooting


Nothing happens after `npx wml start`
 - Give `watchman` Full Disk Access permission
 - Do this command: `watchman watch /path/to/wml/src`
 - Update read/write access for global `node_modules`: `chmod -R 775 /path/to/global/node_modules`

## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
