Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 597 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (24 loc) · 597 Bytes

Contributing

Pull requests

Make sure to make your pull requests against the develop branch.

Build

The build step transpiles the src/ to dist/, with ncc. These files, by convention, are also checked in.

  • Create Conda env with nodejs:

We use NodeJS version 16 for now.

conda create -n github-action nodejs=16 -c conda-forge
conda activate
  • Install NodeJS dependencies:
npm install
  • Ensure the files in dist have been rebuilt:
npm run format
npm run check
npm run build

Release

See the release documentation.