Skip to content

Commit 4e110da

Browse files
committed
⬆️ chore: upgrade devDependencies & fix linter warnings
1 parent b13c7b2 commit 4e110da

File tree

3 files changed

+499
-484
lines changed

3 files changed

+499
-484
lines changed

Diff for: package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -39,35 +39,35 @@
3939
"packages/*"
4040
],
4141
"devDependencies": {
42-
"@babel/core": "7.15.0",
43-
"@babel/eslint-parser": "7.15.0",
42+
"@babel/core": "7.15.5",
43+
"@babel/eslint-parser": "7.15.7",
4444
"@guanghechen/eslint-config": "^1.8.3",
4545
"@guanghechen/eslint-config-ts": "^1.8.3",
4646
"@guanghechen/jest-config": "^1.8.3",
4747
"@guanghechen/rollup-config": "^1.8.3",
4848
"@types/fs-extra": "^9.0.8",
4949
"@types/jest": "27.0.1",
50-
"@types/node": "16.7.1",
50+
"@types/node": "16.9.4",
5151
"cross-env": "7.0.3",
5252
"eslint": "7.32.0",
5353
"eslint-config-prettier": "8.3.0",
54-
"eslint-plugin-jest": "24.4.0",
55-
"eslint-plugin-prettier": "3.4.1",
54+
"eslint-plugin-jest": "24.4.2",
55+
"eslint-plugin-prettier": "4.0.0",
5656
"fs-extra": "^10.0.0",
5757
"gitmoji-changelog": "2.2.1",
58-
"husky": "7.0.1",
58+
"husky": "7.0.2",
5959
"is-ci": "3.0.0",
60-
"jest": "27.0.6",
60+
"jest": "27.2.1",
6161
"lerna": "4.0.0",
6262
"lint-staged": "11.1.2",
6363
"npm-run-all": "4.1.5",
6464
"pinst": "2.1.6",
65-
"prettier": "2.3.2",
65+
"prettier": "2.4.1",
6666
"rimraf": "3.0.2",
6767
"rollup": "2.56.3",
6868
"ts-jest": "27.0.5",
6969
"ts-node": "10.2.1",
70-
"tsconfig-paths": "3.10.1",
70+
"tsconfig-paths": "3.11.0",
7171
"typescript": "4.3.5",
7272
"yarn-deduplicate": "3.1.0"
7373
},

Diff for: packages/mcmf/__test__/codeforce.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('codeforces', function () {
3131
mcmf.addEdge(x, v, Number.MAX_SAFE_INTEGER, 1)
3232
}
3333

34-
const [mincost, maxflow] = mcmf.minCostMaxFlow()
34+
const [, maxflow] = mcmf.minCostMaxFlow()
3535
answer -= maxflow
3636
return answer
3737
}

0 commit comments

Comments
 (0)