semantic-release-yarn
Version:
semantic-release plugin to publish a npm package with yarn
9 lines (8 loc) • 379 B
TypeScript
import type { PackageJson } from "read-pkg";
import type { AddChannelContext } from "./definitions/context.js";
import type { PluginConfig } from "./definitions/pluginConfig.js";
export declare function addChannel(pluginConfig: PluginConfig, pkg: PackageJson, context: AddChannelContext): Promise<false | {
name: string;
url: string | undefined;
channel: string;
}>;