@semantic-release-plus/core
Advanced tools
Comparing version 2.0.0-alpha.2 to 2.0.0-alpha.3
{ | ||
"name": "@semantic-release-plus/core", | ||
"version": "2.0.0-alpha.2", | ||
"version": "2.0.0-alpha.3", | ||
"description": "semantic-release-plus core interfaces and functionality", | ||
@@ -5,0 +5,0 @@ "private": false, |
/// <reference types="node" /> | ||
import { BranchType } from '../enums'; | ||
export interface Context { | ||
branch?: Branch; | ||
branch: Branch; | ||
branches?: Branch[]; | ||
@@ -20,6 +20,9 @@ commits?: Commit[]; | ||
export interface Options { | ||
tagFormat?: unknown; | ||
repositoryUrl?: unknown; | ||
tagFormat?: string; | ||
repositoryUrl?: string; | ||
branches?: unknown; | ||
publish?: boolean; | ||
dryRun?: boolean; | ||
noCi?: boolean; | ||
skipTag?: boolean; | ||
} | ||
@@ -42,10 +45,18 @@ export interface Release { | ||
export interface Branch { | ||
channel: unknown; | ||
tags: unknown; | ||
type: unknown; | ||
name: unknown; | ||
range: unknown; | ||
accept: unknown; | ||
main: unknown; | ||
name: string; | ||
channel?: string; | ||
tags?: Tag[]; | ||
type?: BranchType; | ||
range?: string; | ||
accept?: unknown; | ||
main?: unknown; | ||
mergeRange?: string; | ||
} | ||
export interface Tag { | ||
version: string; | ||
channel: string; | ||
channels: string[]; | ||
gitTag: string; | ||
gitHead: string; | ||
} | ||
export interface Commit { | ||
@@ -52,0 +63,0 @@ commit: { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6735
148