@dmeents/semantic-release-yarn
Version:
A plugin for semantic-release to support publishing to NPM with yarn@berry
21 lines • 610 B
TypeScript
/// <reference types="node" />
export interface Context {
readonly cwd: string;
readonly env: NodeJS.ProcessEnv;
readonly stdout: NodeJS.WriteStream;
readonly stderr: NodeJS.WriteStream;
readonly logger: {
readonly log: (message: string, ...vars: any[]) => void;
readonly error: (message: string, ...vars: any[]) => void;
};
}
export interface PrepareContext extends Context {
readonly nextRelease: {
readonly version: string;
readonly channel: string;
};
}
export interface LineJson {
location?: string;
}
//# sourceMappingURL=types.d.ts.map