Publish

Publish a new version of the npm package

tomaspavlin fc0a2c3 684 B Updated

File contents

Publish NPM Package

1. Ask the user what version bump they want

  • patch (e.g. 3.2.0 → 3.2.1) - bug fixes
  • minor (e.g. 3.2.0 → 3.3.0) - new features
  • major (e.g. 3.2.0 → 4.0.0) - breaking changes

2. Bump the version

Run npm version patch, npm version minor, or npm version major based on the user's choice. This updates package.json and creates a git tag.

3. Tell the user to publish

Tell the user to run:

npm publish --access public

Do NOT run npm publish yourself. The user needs to authenticate with npm and must run this command manually.

tomaspavlin/rohlik-mcp/tree/main/.claude/skills/publish commit fc0a2c3b42

Frequently asked questions

npx skillmds add tomaspavlin/publish