3.18.0 • Published 2 years ago
taylor-cb-cli-test v3.18.0
Contents
Requirements for contributing
The following must be available in your system:
Node v18.16.0 (LTS) recommended.
Getting started
Install node modules:
yarn installInstall python packages:
pipenv installSpin a demo app using the customized React Native template:
yarn run demoInstall modules to your demo app:
yarn run add react-native-app-menuCreate new modules and test/validate your work locally before submitting a PR:
yarn run parseInstall modules globally to your system:
npm install -g cbmacOS config
- make sure to have a compatible version of urllib3 with openssl. urllib3 v2.0 or higher is compatible with OpenSSL 1.1.1 or higher
Modules updates checklist
When adding a new module please make sure that:
- it includes a
meta.jsonfile in the module's root directory. - it includes a
preview.pngimage in the module's root directory. yarn run parsechecks pass.- you ran
yarn run distand added the changes. - you can open your module in the demo app (
yarn run demo,yarn run add <your-module-name-here>,cd demo; npx react-native-start).
When making changes to a module please make sure that:
yarn run parsechecks pass.- you ran
yarn run distand added the changes. - you can open your module in the demo app (
yarn run demo,yarn run add <your-module-name-here>,cd demo; npx react-native-start).
Include as much documentation for your module as possible, and if you haven't seen it yet we created a style guide for Authoring Modules.