Before you submit your Pull Request (PR) consider the following guidelines:
-
Search GitHub for an open or closed PR that relates to your submission. You don't want to duplicate existing efforts.
-
Be sure that an issue describes the problem you're fixing, or documents the design for the feature you'd like to add. Discussing the design upfront helps to ensure that we're ready to accept your work.
-
Fork the repo.
-
In your forked repository, make your changes in a new git branch:
git checkout -b branch-name-foo
-
Npm install dependencies
npm ci
(clean install)
-
Symlink repo as
capacitor-native-biometric
package to your capacitor application for easy development vianpm link
-
In
capacitor-native-biometric
repo root, where package.json is, runnpm link
-
In the root of your capacitor application that uses
capacitor-native-biometric
, where package.json is, runnpm link capacitor-native-biometric
-
-
Make and commit changes
git commit --all
-
Push your branch to GitHub:
git push origin branch-name-foo
-
In GitHub, send a pull request to
capacitor-native-biometric