Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (14 loc) · 770 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (14 loc) · 770 Bytes

Thanks for contributing!

Development

Installing dependencies

npm install

Demo

You can run the demo locally by simply doing npm start; this will start the demo at http://localhost:3000.

Linting

Before commiting any changes, be sure to do npm run lint; this will lint all relevant files using ESLint and report on any changes that you need to make. You can also run npm run lint-fix to fix most common lint errors automatically.

Releasing a new version to NPM (only for project administrators):

  1. Run npm version patch (or minor, major as appropriate) to lint and build the lib and umd directories.
  2. Run npm publish and publish to NPM if all is well.
  3. Run git push && git push --tags