🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@qualcomm-ui/changesets-cli

Package Overview
Dependencies
Maintainers
2
Versions
6
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.1.0
Version published
Weekly downloads
169
48.25%
Maintainers
2
Weekly downloads
 
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

check-jsdoc-since-tags

Checks for unresolved JSDoc @since next-release tags without modifying files. With no directories, it scans package source directories. Pass one or more directories to scan those trees directly. Output includes the file and the declaration that owns the tag.

qui-changesets check-jsdoc-since-tags [directories...]

update-jsdoc-since-tags

Replaces JSDoc @since next-release tags. With no directories, it updates package source directories whose current package.json version differs from the Changesets base branch. Pass --diff-ref to compare against another Git ref such as a commit SHA, tag, local branch, or remote-tracking branch like origin/main. Pass one or more directories to update those trees directly. Pass --version to use an explicit version; otherwise each custom directory must be inside a package with a current version.

qui-changesets update-jsdoc-since-tags [directories...] [--diff-ref <git-ref>] [--version <version>]

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 15 May 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