Skip to content

Commit

Permalink
fix: Remove circular dependencies (#2125)
Browse files Browse the repository at this point in the history
  • Loading branch information
dplewis committed May 15, 2024
1 parent 01faf7b commit b415165
Show file tree
Hide file tree
Showing 45 changed files with 1,899 additions and 105 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ jobs:
- run: npm ci
- name: Check Docs
run: npm run docs
check-circular:
name: Check Circular Dependencies
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- name: Circular Dependencies
run: npm run madge:circular
check-lint:
name: Lint
timeout-minutes: 15
Expand Down
10 changes: 10 additions & 0 deletions .madgerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"detectiveOptions": {
"ts": {
"skipTypeImports": true
},
"es6": {
"skipTypeImports": true
}
}
}

0 comments on commit b415165

Please sign in to comment.