Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 740 Bytes

File metadata and controls

34 lines (23 loc) · 740 Bytes

Contributing Guide

Contributions, enhancements, and bug-fixes are welcome! Open an issue on GitHub and submit a pull request.

Building Locally

You should be using Node.js v24 or later to build this project locally

# Clone this repository
git clone https://github.com/JS-DevTools/npm-publish.git

# Install dependencies
pnpm install

# Run all checks, builds, and unit tests
pnpm all

There are also various code quality checks and tests you can run:

# Run builds and typechecking
pnpm build

# Run the unit tests in watch mode
pnpm test

# Autoformat the code
pnpm format

# Lint the code
pnpm lint