Skip to content

Commit

Permalink
barrelify: Fix CI enforcement
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobLey committed Nov 22, 2024
1 parent 25d162d commit 84be94c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/tame-timers-count.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"barrelify": patch
---

Fix CI enforcement
5 changes: 4 additions & 1 deletion apps/barrelify/src/lib/barrel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ export class Barrel {
filePath,
content: barrel,
},
{ dryRun }
{
dryRun,
check: false,
}
);
return updated;
}
Expand Down
10 changes: 8 additions & 2 deletions apps/barrelify/src/tests/unit/lib/barrel.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ suite('barrel', () => {
`,
},
{ dryRun: false }
{
check: false,
dryRun: false,
}
)
).to.equal(true);
});
Expand Down Expand Up @@ -159,7 +162,10 @@ suite('barrel', () => {
`,
},
{ dryRun: true }
{
check: false,
dryRun: true,
}
)
).to.equal(true);
});
Expand Down

0 comments on commit 84be94c

Please sign in to comment.