Bump dev dependencies to latest versions

Only one breaking change with `@rollup/plugin-typescript`,
that enforced a check on the `outDir` location.
This commit is contained in:
larabr 2025-05-06 17:50:48 +02:00
parent a51249a964
commit cabc91c42c
3 changed files with 204 additions and 549 deletions

723
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -68,16 +68,16 @@
"@noble/hashes": "^1.8.0",
"@openpgp/jsdoc": "^3.6.11",
"@openpgp/seek-bzip": "^1.0.5-git",
"@openpgp/tweetnacl": "^1.0.4-1",
"@openpgp/tweetnacl": "^1.0.4-2",
"@openpgp/web-stream-tools": "~0.1.3",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-wasm": "^6.2.2",
"@types/chai": "^4.3.20",
"@types/chai": "^5.2.2",
"@types/sinon": "^17.0.4",
"@typescript-eslint/parser": "^7.18.0",
"@web/test-runner": "^0.19.0",
@ -87,9 +87,9 @@
"argon2id": "^1.0.1",
"benchmark": "^2.1.4",
"bn.js": "^5.2.2",
"c8": "^8.0.1",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"c8": "^10.1.3",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eckey-utils": "^0.7.14",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
@ -100,10 +100,10 @@
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^48.0.1",
"fflate": "^0.8.2",
"mocha": "^10.8.2",
"mocha": "^11.2.2",
"playwright": "^1.53.0",
"rollup": "^4.40.2",
"sinon": "^18.0.1",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.4",

View File

@ -71,7 +71,7 @@ const nodeBuild = {
exportConditions: ['node'] // needed for resolution of noble-curves import of '@noble/crypto' in Node 18
}),
typescript({
compilerOptions: { outDir: './dist/tmp-ts' }
compilerOptions: { outDir: './dist/node' } // temporary output location, needed to avoid js files being overwritten under `src`
}),
commonjs(),
replace({
@ -95,7 +95,7 @@ const fullBrowserBuild = {
browser: true
}),
typescript({
compilerOptions: { outDir: './dist/tmp-ts' } // to avoid js files being overwritten
compilerOptions: { outDir: './dist' } // temporary output location, needed to avoid js files being overwritten under `src`
}),
commonjs({
ignore: nodeBuiltinModules.concat(nodeDependencies)
@ -122,7 +122,7 @@ const lightweightBrowserBuild = {
browser: true
}),
typescript({
compilerOptions: { outDir: './dist/lightweight/tmp-ts' }
compilerOptions: { outDir: './dist/lightweight' }
}),
commonjs({
ignore: nodeBuiltinModules.concat(nodeDependencies)
@ -152,7 +152,7 @@ const getBrowserTestBuild = useLightweightBuild => ({
browser: true
}),
typescript({
compilerOptions: { outDir: './test/lib/tmp-ts' }
compilerOptions: { outDir: './test/lib' }
}),
commonjs({
ignore: nodeBuiltinModules.concat(nodeDependencies),