Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 471 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (24 loc) · 471 Bytes

Contributing to this project

Setup

Requirements

  • Node.js ^20.11 or later
  • pnpm ^9

Clone and install dependencies

git clone https://github.com/moontaiworks/package-template.git
cd package-template
pnpm install

Manually Publish

# update version
sh scripts/version.sh

# test and build before publish
pnpm test -- --run
pnpm build

# publish
pnpm login
pnpm publish --tag latest

# push back to remote
git push --follow-tags