Skip to content

Commit

Permalink
vx: add minor keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jan 21, 2022
1 parent c1e31f3 commit e353c16
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vx/scripts/release/releaseKeywords.js
Expand Up @@ -5,10 +5,16 @@ const KEYWORD_PATCH = 'patch';
const KEYWORD_MINOR = 'minor';
const KEYWORD_FEAT = 'feat';
const KEYWORD_ADDED = 'added';
const KEYWORD_ADD = 'add';
const KEYWORD_MAJOR = 'major';
const KEYWORD_BREAKING = 'breaking';

const KEYWORDS_MINOR = [KEYWORD_MINOR, KEYWORD_FEAT, KEYWORD_ADDED];
const KEYWORDS_MINOR = [
KEYWORD_MINOR,
KEYWORD_FEAT,
KEYWORD_ADDED,
KEYWORD_ADD,
];
const KEYWORDS_MAJOR = [KEYWORD_MAJOR, KEYWORD_BREAKING];

const CHANGELOG_TITLES = {
Expand Down

1 comment on commit e353c16

@vercel
Copy link

@vercel vercel bot commented on e353c16 Jan 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-next-ealush.vercel.app
vest-website.vercel.app
vest-next-git-latest-ealush.vercel.app
vest-next.vercel.app

Please sign in to comment.