Skip to content

Commit 6ffb9ad

Browse files
committed
chore: fix issues with deaplign
1 parent 59523f8 commit 6ffb9ad

File tree

12 files changed

+731
-891
lines changed

12 files changed

+731
-891
lines changed

.depalignrc.json

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,11 @@
11
{
22
"ignore": {
3-
"@babel/core": [
4-
"^7.26.10"
5-
],
6-
"yaml": [
7-
"^2.3.1",
8-
"^1.10.0"
9-
],
10-
"eslint-plugin-mocha": [
11-
"^8.0.0",
12-
"^9.0.0"
13-
],
14-
"@typescript-eslint/eslint-plugin": [
15-
"^5.59.0",
16-
"^4.33.0"
17-
],
18-
"@typescript-eslint/parser": [
19-
"^5.59.0",
20-
"^4.33.0"
21-
],
22-
"node-fetch": [
23-
"^3.3.2",
24-
"2.6.12"
25-
]
3+
"@babel/core": ["^7.26.10"],
4+
"bson": ["^6.10.4", "^6.10.4 | ^7.0.0"],
5+
"yaml": ["^2.3.1", "^1.10.0"],
6+
"eslint-plugin-mocha": ["^8.0.0", "^9.0.0"],
7+
"@typescript-eslint/eslint-plugin": ["^5.59.0", "^4.33.0"],
8+
"@typescript-eslint/parser": ["^5.59.0", "^4.33.0"],
9+
"node-fetch": ["^3.3.2", "2.6.12"]
2610
}
27-
}
11+
}

configs/eslint-config-mongosh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"eslint-plugin-react-hooks": "^4.2.0"
2929
},
3030
"devDependencies": {
31-
"prettier": "^2.7.1"
31+
"prettier": "^2.8.8"
3232
},
3333
"scripts": {
3434
"check": "npm run lint",

configs/tsconfig-mongosh/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"typescript": "^5.3.3"
1212
},
1313
"devDependencies": {
14-
"@mongodb-js/prettier-config-devtools": "^1.0.0",
15-
"prettier": "^2.7.1"
14+
"@mongodb-js/prettier-config-devtools": "^1.0.1",
15+
"prettier": "^2.8.8"
1616
},
1717
"scripts": {
1818
"check": "npm run lint",

knip.ts

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,16 @@ const config: KnipConfig = {
1313
"**/tmp/**",
1414
"**/.sbom/**",
1515
"**/test/data/**",
16-
// Docker and scripts that are executed directly
17-
"scripts/docker/**",
18-
// Async rewriter3 has its own build system (Rust/WASM)
19-
"packages/async-rewriter3/**",
2016
// Configuration files (from depcheck ignore-patterns)
2117
".evergreen/**",
2218
"config/**",
2319
"configs/**",
2420
"**/.eslintrc.js",
21+
"testing/tsconfig.json",
2522
],
2623

27-
// Global ignore dependencies (used across multiple packages or in special contexts)
28-
ignoreDependencies: [
29-
// Common dev tooling that appears in .depcheckrc files (peer dependencies)
30-
"@mongodb-js/tsconfig-mongosh",
31-
"@mongodb-js/prettier-config-devtools",
32-
],
33-
34-
// Ignore binaries that are used in scripts
35-
ignoreBinaries: ["lerna", "mongodb-sbom-tools", "prettier"],
24+
// Received from @mongodb-js/sbom-tools
25+
ignoreBinaries: ["mongodb-sbom-tools"],
3626

3727
// Workspace-specific configurations
3828
workspaces: {

0 commit comments

Comments
 (0)