Skip to content

Commit b415165

Browse files
authored
fix: Remove circular dependencies (parse-community#2125)
1 parent 01faf7b commit b415165

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1899
-105
lines changed

.github/workflows/ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ jobs:
3434
- run: npm ci
3535
- name: Check Docs
3636
run: npm run docs
37+
check-circular:
38+
name: Check Circular Dependencies
39+
timeout-minutes: 5
40+
runs-on: ubuntu-latest
41+
steps:
42+
- uses: actions/checkout@v3
43+
- run: npm ci
44+
- name: Circular Dependencies
45+
run: npm run madge:circular
3746
check-lint:
3847
name: Lint
3948
timeout-minutes: 15

.madgerc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"detectiveOptions": {
3+
"ts": {
4+
"skipTypeImports": true
5+
},
6+
"es6": {
7+
"skipTypeImports": true
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)