Skip to content

Latest commit

 

History

History
133 lines (86 loc) · 4.84 KB

File metadata and controls

133 lines (86 loc) · 4.84 KB

Contributing

Contributions are always welcome, no matter how large or small!

Development workflow

This project is a monorepo managed using Bun workspaces. It contains the following packages:

  • The library package in the root directory.
  • An example app in the example/ directory.
  • The code generator package in the protoc-generator/ directory.

To get started with the project, run bun install in the root directory to install the required dependencies for each package:

bun install

Most files are generated using the protoc plugin in the protoc-generator folder, and they're tagged with a notice in the top.

In order to generate these files, you need protoc installed and in your PATH.

Once you have protoc, run bun run generate-bindings in the root directory.

Since the project relies on Bun workspaces, use Bun commands for development.

The example app demonstrates usage of the library. You need to run it to test any changes you make.

It is configured to use the local version of the library, so any changes you make to the library's source code will be reflected in the example app.

To make changes to the C++ and Typescript code, you can either editor the generated files in cpp/ and src/ respectively. You you will then need to make the same changes in protoc-generator/. You can also just directly edit the generator if it's a smaller change.

You can use various commands from the root directory to work with the project.

To start the packager:

bun run example start

To run the example app on Android:

bun run example android

To run the example app on iOS:

bun run example ios

To confirm that the app is running with the new architecture, you can check the Metro logs for a message like this:

Running "TurboLndExample" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}

Note the "fabric":true and "concurrentRoot":true properties.

Make sure your code passes TypeScript and ESLint. Run the following to verify:

bun run typecheck
bun run lint

To fix formatting errors, run the following:

bun run lint --fix

Remember to add tests for your change if possible. Run the unit tests by:

Linting and tests

ESLint, Prettier, TypeScript

We use TypeScript for type checking, ESLint with Prettier for linting and formatting the code, and Jest for testing.

Our pre-commit hooks verify that the linter and tests pass when committing.

Publishing to npm and GitHub Releases

We use release-it inside GitHub Actions to publish releases.

To publish a new version:

  1. Open the Release workflow in GitHub Actions on the master branch.
  2. Choose the semver increment (patch, minor, or major).
  3. Optionally run a dry run first.
  4. Start the workflow.

The workflow will:

  • run validation checks
  • bump package.json
  • create the release commit and v<version> tag on the same commit
  • publish the package to npm
  • create the GitHub Release
  • build and attach the native liblnd artifacts for Android, iOS, macOS, and Windows

Scripts

The package.json file contains various scripts for common tasks:

  • bun install: setup project by installing dependencies.
  • bun run typecheck: type-check files with TypeScript.
  • bun run lint: lint files with ESLint.
  • bun run test: run unit tests with Jest.
  • bun run generate-bindings: Generate C++ and TypeScript bindings for cpp/, src/index.ts, src/mock.ts, src/core/NativeTurboLnd.ts, and src/proto/**.
  • bun run generate-codegen-specs: Generate TurboModule codegen specs
  • bun run bob: build the library using react-native-builder-bob.
  • bun run build: generate lnd bindings & C++ TurboModule codegen and build the library using react-native-builder-bob.
  • bun run example start: start the Metro server for the example app.
  • bun run example android: run the example app on Android.
  • bun run example ios: run the example app on iOS.

Sending a pull request

Working on your first pull request? You can learn how from this free series: How to Contribute to an Open Source Project on GitHub.

When you're sending a pull request:

  • Prefer small pull requests focused on one change.
  • Verify that linters and tests are passing.
  • Review the documentation to make sure it looks good.
  • Follow the pull request template when opening a pull request.
  • For pull requests that change the API or implementation, discuss with maintainers first by opening an issue.