Skip to content

Commit b91bb84

Browse files
authored
Merge branch 'alpha' into fix-1798
2 parents 7995d2c + d366dff commit b91bb84

Some content is hidden

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

47 files changed

+1913
-126
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+
}

changelogs/CHANGELOG_alpha.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [5.1.0-alpha.10](https://github.com/parse-community/Parse-SDK-JS/compare/5.1.0-alpha.9...5.1.0-alpha.10) (2024-05-15)
2+
3+
4+
### Bug Fixes
5+
6+
* Remove circular dependencies ([#2125](https://github.com/parse-community/Parse-SDK-JS/issues/2125)) ([b415165](https://github.com/parse-community/Parse-SDK-JS/commit/b415165486f0328e0f9fb2d949d7b11abf363435))
7+
18
# [5.1.0-alpha.9](https://github.com/parse-community/Parse-SDK-JS/compare/5.1.0-alpha.8...5.1.0-alpha.9) (2024-05-04)
29

310

0 commit comments

Comments
 (0)