interface BumpedEntry

What bump changed: where the entry lives, and the range it now carries.

import type { BumpedEntry } from './manifest.ts';

const bumped: BumpedEntry = { field: 'devDependencies', range: '~0.35.0' };
bumped.range; // '~0.35.0' — the operator the project chose, kept

Properties

field: string

The part of the manifest that changed: imports, dependencies or devDependencies.

range: string

The range now written there, operator included.

Usage

import { type BumpedEntry } from "lib/commands/upgrade/manifest.ts";