Skip to content

Commit

Permalink
fix(config-nx-scopes): fix for projects without explicit targets (#4261)
Browse files Browse the repository at this point in the history
  • Loading branch information
gperdomor authored Feb 2, 2025
1 parent f468271 commit 25bb2cd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion @commitlint/config-nx-scopes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function getProjects(context, selector = () => true) {
tags: project.tags,
})
)
.filter((project) => project.targets)
.map((project) => project.name)
.map((name) => (name.charAt(0) === '@' ? name.split('/')[1] : name));
}

0 comments on commit 25bb2cd

Please sign in to comment.