Skip to content

Commit

Permalink
feat(types): export types exposed by Manifest for use downstream (#2147)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored Dec 5, 2023
1 parent a7d3b73 commit b259d70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ export {
ReleaserConfig,
ManifestOptions,
PluginType,
CandidateRelease,
CreatedRelease,
} from './manifest';
export {ReleasePullRequest} from './release-pull-request';
export {PullRequest} from './pull-request';
export {Commit, ConventionalCommit} from './commit';
export {Strategy} from './strategy';
export {BaseStrategyOptions, BuildUpdatesOptions} from './strategies/base';
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const DEFAULT_COMMIT_SEARCH_DEPTH = 500;

export const MANIFEST_PULL_REQUEST_TITLE_PATTERN = 'chore: release ${branch}';

interface CreatedRelease extends GitHubRelease {
export interface CreatedRelease extends GitHubRelease {
id: number;
path: string;
version: string;
Expand Down

0 comments on commit b259d70

Please sign in to comment.