Skip to content

Commit

Permalink
fix: display project tag instead of [object Object]
Browse files Browse the repository at this point in the history
  • Loading branch information
photomoose authored and AgentEnder committed Aug 23, 2021
1 parent 2c54310 commit 2dea7fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/src/tasks/check-module-boundaries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ export async function checkModuleBoundariesForProject(
)
) {
violations.push(
`${project} cannot depend on ${name}. Project tag ${constraint} is not satisfied.`,
`${project} cannot depend on ${name}. Project tag ${JSON.stringify(
constraint,
)} is not satisfied.`,
);
}
}
Expand Down

0 comments on commit 2dea7fc

Please sign in to comment.