New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@changesets/config

Package Overview
Dependencies
Maintainers
4
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/config

Utilities for reading and parsing Changeset's config

Source
npmnpm
Version
0.0.0-pr1845.eedc603
Version published
Weekly downloads
3.5M
3.32%
Maintainers
4
Weekly downloads
 
Created
Source

@changesets/config

Utilities for reading and parsing Changeset's config

npm package View changelog

import { parse, read, ValidationError } from "@changesets/config";

let config = await read(process.cwd(), workspaces);

let config = parse({ commit: true }, workspaces);

try {
  return parse({ commit: true }, workspaces);
} catch (err) {
  if (err instanceof ValidationError) {
    let message = err.message;
  } else {
    throw err;
  }
}

FAQs

Package last updated on 18 Feb 2026

Related posts