UNPKG

changesets-gitlab

Version:

[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/un-ts/changesets-gitlab/ci.yml?branch=main)](https://github.com/un-ts/changesets-gitlab/actions/workflows/ci.yml?query=branch%3Amain) [![CodeRabbit Pull Request Revie

7 lines (6 loc) 252 B
import type { PreState, NewChangeset } from '@changesets/types'; export interface ChangesetState { preState: PreState | undefined; changesets: NewChangeset[]; } export default function readChangesetState(cwd?: string): Promise<ChangesetState>;