🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More →
Socket
Book a DemoSign in
Socket

@qualcomm-ui/changesets-cli

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qualcomm-ui/changesets-cli

Changeset automation CLI for conventional commits

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
2
Created
Source

@qualcomm-ui/changesets-cli

Changeset automation CLI for conventional commits.

This package streamlines the release process for monorepos by converting conventional commits into changesets, managing versioning, formatting changelogs, and generating combined release notes.

Installation

pnpm add -D @qualcomm-ui/changesets-cli

Commands

prep-release

Runs the full release-prep pipeline sequentially:

  • Generate changesets from conventional commits
  • Bump versions and generate changelogs
  • Consolidate changelog formatting
  • Generate combined release notes and write to a temporary file
qui-changesets prep-release [options]
OptionDescriptionDefault
--in-stepsPause after each step and wait for confirmationfalse
--commit-sha <sha>Diff each package against the target commit instead of the repository's base branch
--include-commit-linksEmbed commit hashes in changeset summaries for changelog linksfalse
--package-manager <command>Package manager command to use for changeset versionpnpm
--config <path>Path to the changesets config file, relative to the project root.changeset/config.json

changeset-generate

Generates changesets from conventional commits without running the full pipeline.

qui-changesets changeset-generate [options]
OptionDescriptionDefault
--commit-shaDiff each package against the target commit instead of the repository's base branchfalse
--include-commit-linksEmbed commit hashes in changeset summaries for changelog linksfalse
--config <path>Path to the changesets config file, relative to the project root.changeset/config.json

consolidate-changelogs

Normalizes and reformats all changed CHANGELOG.md files into a consistent structure.

qui-changesets consolidate-changelogs

generate-release-notes

Generates combined release notes from changed package changelogs, separating substantive changes from dependency-only updates.

qui-changesets generate-release-notes

check-versions

Checks which packages have newer local versions than what is published on npm. Sets a should-publish GitHub Actions output.

qui-changesets check-versions [options]
OptionDescriptionDefault
--config <path>Path to the changesets config file, relative to the project root.changeset/config.json

create-github-releases

Creates GitHub releases for published packages by parsing their changelogs.

qui-changesets create-github-releases [options]
OptionDescriptionDefault
--token <token>GitHub token for authentication (falls back to TOKEN or GITHUB_TOKEN env vars)
--repo <owner/repo>GitHub repository in owner/repo formatDerived from git remote
--config <path>Path to the changesets config file, relative to the project root.changeset/config.json

Programmatic API

The package also exports core functions for use in scripts:

import {
  conventionalCommitChangeset,
  consolidateChangelogs,
  generateReleaseNotes,
} from "@qualcomm-ui/changesets-cli"

License

Licensed under the BSD-3-Clause-Clear License.

FAQs

Package last updated on 30 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts