Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 608 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (24 loc) · 608 Bytes

Contributing

Pull requests

Make sure to make your pull requests against the main 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 20 for now.

conda create -n github-action nodejs=20 -c conda-forge
conda activate github-action
  • 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.