Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 755 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (23 loc) · 755 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 v16 or later to build this project locally

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

# Install dependencies*
npm install

# Run all checks, builds, and unit tests
npm run all

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

# Run builds and typechecking
npm run build

# Run the unit tests in watch mode
npm run test

# Autoformat the code
npm run format

# Lint the code
npm run lint