Skip to content

Commit

Permalink
vx: use default package title
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Sep 9, 2023
1 parent 9e3fe91 commit 4dcddef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function listAllChangesSinceStableBranch() {
.split('\n') // split each line of each commit
.filter(Boolean) // ignore empty lines
)
.filter(([title]) => !title.match(IGNORE_PATTERN)) // ignore excluded terms
.filter(([title]) => !title?.match(IGNORE_PATTERN) ?? false) // ignore excluded terms
.map(([title, ...files]) => ({
title,
files,
Expand Down

2 comments on commit 4dcddef

@vercel
Copy link

@vercel vercel bot commented on 4dcddef Sep 9, 2023

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 – ./website

vest-git-latest-ealush.vercel.app
vest.vercel.app
vest-ealush.vercel.app
vestjs.dev
www.vestjs.dev

@vercel
Copy link

@vercel vercel bot commented on 4dcddef Sep 9, 2023

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.vercel.app
vest-website.vercel.app
vest-next-ealush.vercel.app
vest-next-git-latest-ealush.vercel.app

Please sign in to comment.