chore: update dependencies

This commit is contained in:
Simon Chan 2024-08-23 11:32:28 +08:00
parent 954cd1d983
commit fb62a6799d
No known key found for this signature in database
GPG key ID: A8B69F750B9BCEDD
19 changed files with 52 additions and 63 deletions

View file

@ -9,7 +9,7 @@
},
"dependencies": {
"@eslint/js": "^9.9.0",
"@types/node": "^22.4.1",
"@types/node": "^22.5.0",
"eslint": "^9.9.0",
"eslint-plugin-import-x": "^3.1.0",
"typescript": "^5.5.4",

View file

@ -7,7 +7,7 @@
"scripts": {},
"keywords": [],
"dependencies": {
"@types/node": "^22.4.1",
"@types/node": "^22.5.0",
"json5": "^2.2.3"
},
"author": "",

View file

@ -6,7 +6,7 @@
"run-test": "wrapper.js"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@types/node": "^22.5.0",
"typescript": "^5.5.4"
}
}

View file

@ -117,10 +117,5 @@ const filterCoverage = test.pipe(
}),
);
// @ts-expect-error
test.pipe(spec()).pipe(process.stdout);
test
// @ts-expect-error
.pipe(lcov)
// @ts-expect-error
.pipe(createWriteStream(resolve(coverageFolder, "lcov.info")));
test.pipe(lcov).pipe(createWriteStream(resolve(coverageFolder, "lcov.info")));

View file

@ -7,7 +7,8 @@ const child = spawn(
process.execPath,
[
"--enable-source-maps",
"--experimental-test-coverage",
// Disable code coverage until https://github.com/nodejs/node/pull/54444 is released
// "--experimental-test-coverage",
fileURLToPath(import.meta.resolve("./run-test.js", import.meta.url)),
],
{