UNPKG

@suin/semantic-release-yarn

Version:

semantic-release plugin to publish a npm package with yarn@berry

18 lines 732 B
export interface PluginConfig { /** * Whether to publish the npm package to the registry. If `false` the `package.json` version will still be updated. * * Default: `false` if the `package.json` [private](https://docs.npmjs.com/files/package.json#private) property is `true`, `true` otherwise. */ readonly npmPublish?: boolean; /** * Directory path in which to write the package tarball. If `false` the tarball is not be kept on the file system. * * Default: `"."` */ readonly tarballDir?: string | false; } export declare const PluginConfig: { normalize({ npmPublish, tarballDir, }?: PluginConfig | undefined): PluginConfig; }; //# sourceMappingURL=pluginConfig.d.ts.map