Skip to content

Commit

Permalink
Update dependency upgrades - non-major (#602)
Browse files Browse the repository at this point in the history
* Update dependency upgrades - non-major

* Switch to `return await` to avoid ESLint problem

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Karl Horky <[email protected]>
  • Loading branch information
renovate[bot] and karlhorky authored Nov 29, 2024
1 parent 4325499 commit 38a1c61
Show file tree
Hide file tree
Showing 3 changed files with 455 additions and 353 deletions.
2 changes: 1 addition & 1 deletion __tests__/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ beforeAll(
],
async (testRepo) => {
await execa`git clone --depth 1 --single-branch --branch=main https://github.com/${testRepo.repoPath}.git ${fixturesTempDir}/${testRepo.dirName} --config core.autocrlf=input`;
return testRepo.setup();
return await testRepo.setup();
},
{
// Run up to 4 concurrent test repo setups at a time
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@
"tsx": "4.19.2"
},
"devDependencies": {
"@types/node": "22.9.1",
"@types/node": "22.10.1",
"@types/p-map": "2.0.0",
"@types/semver": "7.5.8",
"eslint": "9.15.0",
"eslint-config-upleveled": "8.11.4",
"eslint-config-upleveled": "8.12.0",
"p-map": "7.0.2",
"prettier": "3.3.3",
"stylelint": "16.10.0",
"typescript": "5.6.3",
"vitest": "2.1.5"
"prettier": "3.4.1",
"stylelint": "16.11.0",
"typescript": "5.7.2",
"vitest": "2.1.6"
},
"packageManager": "[email protected].2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"packageManager": "[email protected].3+sha512.c0f53ee99477ed969b82b289ad011a5d16bf1623c957e7f29eabe8d0c00b574c29b8c7f54f6c67ee710c73f285c8154d07ce44b46fe2c0eeb476a90441bac371",
"engines": {
"node": ">=18"
}
Expand Down
Loading

0 comments on commit 38a1c61

Please sign in to comment.