Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

36 lines (21 loc) · 1.06 KB

Contributing

This guide provides instructions for contributing to this Capacitor plugin.

Developing

Local Setup

  1. Fork and clone the repo.

  2. Install the dependencies.

    npm install

Scripts

npm run build

It will compile the TypeScript code from src/ into ESM JavaScript in dist/. These files are used in apps with bundlers when your plugin is imported.

npm run lint / npm run fmt

Check formatting and code quality, autoformat/autofix if possible.

This template is integrated with TSLint, Prettier. Using these tools is completely optional, but strives to have consistent code style and structure for easier cooperation.

Publishing

There is a prepack hook in package.json which prepares the plugin before publishing, so all you need to do is run:

npm publish

Note: The files array in package.json specifies which files get published. If you rename files/directories or add files elsewhere, you may need to update it.