mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-07-03 19:42:29 +00:00
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:
parent
a51249a964
commit
cabc91c42c
723
package-lock.json
generated
723
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -68,16 +68,16 @@
|
|||||||
"@noble/hashes": "^1.8.0",
|
"@noble/hashes": "^1.8.0",
|
||||||
"@openpgp/jsdoc": "^3.6.11",
|
"@openpgp/jsdoc": "^3.6.11",
|
||||||
"@openpgp/seek-bzip": "^1.0.5-git",
|
"@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",
|
"@openpgp/web-stream-tools": "~0.1.3",
|
||||||
"@rollup/plugin-alias": "^5.1.1",
|
"@rollup/plugin-alias": "^5.1.1",
|
||||||
"@rollup/plugin-commonjs": "^25.0.8",
|
"@rollup/plugin-commonjs": "^28.0.3",
|
||||||
"@rollup/plugin-node-resolve": "^15.3.1",
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
||||||
"@rollup/plugin-replace": "^5.0.7",
|
"@rollup/plugin-replace": "^6.0.2",
|
||||||
"@rollup/plugin-terser": "^0.4.4",
|
"@rollup/plugin-terser": "^0.4.4",
|
||||||
"@rollup/plugin-typescript": "^11.1.6",
|
"@rollup/plugin-typescript": "^12.1.2",
|
||||||
"@rollup/plugin-wasm": "^6.2.2",
|
"@rollup/plugin-wasm": "^6.2.2",
|
||||||
"@types/chai": "^4.3.20",
|
"@types/chai": "^5.2.2",
|
||||||
"@types/sinon": "^17.0.4",
|
"@types/sinon": "^17.0.4",
|
||||||
"@typescript-eslint/parser": "^7.18.0",
|
"@typescript-eslint/parser": "^7.18.0",
|
||||||
"@web/test-runner": "^0.19.0",
|
"@web/test-runner": "^0.19.0",
|
||||||
@ -87,9 +87,9 @@
|
|||||||
"argon2id": "^1.0.1",
|
"argon2id": "^1.0.1",
|
||||||
"benchmark": "^2.1.4",
|
"benchmark": "^2.1.4",
|
||||||
"bn.js": "^5.2.2",
|
"bn.js": "^5.2.2",
|
||||||
"c8": "^8.0.1",
|
"c8": "^10.1.3",
|
||||||
"chai": "^4.5.0",
|
"chai": "^5.2.0",
|
||||||
"chai-as-promised": "^7.1.2",
|
"chai-as-promised": "^8.0.1",
|
||||||
"eckey-utils": "^0.7.14",
|
"eckey-utils": "^0.7.14",
|
||||||
"eslint": "^8.57.1",
|
"eslint": "^8.57.1",
|
||||||
"eslint-config-airbnb": "^19.0.4",
|
"eslint-config-airbnb": "^19.0.4",
|
||||||
@ -100,10 +100,10 @@
|
|||||||
"eslint-plugin-import": "^2.31.0",
|
"eslint-plugin-import": "^2.31.0",
|
||||||
"eslint-plugin-unicorn": "^48.0.1",
|
"eslint-plugin-unicorn": "^48.0.1",
|
||||||
"fflate": "^0.8.2",
|
"fflate": "^0.8.2",
|
||||||
"mocha": "^10.8.2",
|
"mocha": "^11.2.2",
|
||||||
"playwright": "^1.53.0",
|
"playwright": "^1.53.0",
|
||||||
"rollup": "^4.40.2",
|
"rollup": "^4.40.2",
|
||||||
"sinon": "^18.0.1",
|
"sinon": "^20.0.0",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"tslib": "^2.8.1",
|
"tslib": "^2.8.1",
|
||||||
"tsx": "^4.19.4",
|
"tsx": "^4.19.4",
|
||||||
|
@ -71,7 +71,7 @@ const nodeBuild = {
|
|||||||
exportConditions: ['node'] // needed for resolution of noble-curves import of '@noble/crypto' in Node 18
|
exportConditions: ['node'] // needed for resolution of noble-curves import of '@noble/crypto' in Node 18
|
||||||
}),
|
}),
|
||||||
typescript({
|
typescript({
|
||||||
compilerOptions: { outDir: './dist/tmp-ts' }
|
compilerOptions: { outDir: './dist/node' } // temporary output location, needed to avoid js files being overwritten under `src`
|
||||||
}),
|
}),
|
||||||
commonjs(),
|
commonjs(),
|
||||||
replace({
|
replace({
|
||||||
@ -95,7 +95,7 @@ const fullBrowserBuild = {
|
|||||||
browser: true
|
browser: true
|
||||||
}),
|
}),
|
||||||
typescript({
|
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({
|
commonjs({
|
||||||
ignore: nodeBuiltinModules.concat(nodeDependencies)
|
ignore: nodeBuiltinModules.concat(nodeDependencies)
|
||||||
@ -122,7 +122,7 @@ const lightweightBrowserBuild = {
|
|||||||
browser: true
|
browser: true
|
||||||
}),
|
}),
|
||||||
typescript({
|
typescript({
|
||||||
compilerOptions: { outDir: './dist/lightweight/tmp-ts' }
|
compilerOptions: { outDir: './dist/lightweight' }
|
||||||
}),
|
}),
|
||||||
commonjs({
|
commonjs({
|
||||||
ignore: nodeBuiltinModules.concat(nodeDependencies)
|
ignore: nodeBuiltinModules.concat(nodeDependencies)
|
||||||
@ -152,7 +152,7 @@ const getBrowserTestBuild = useLightweightBuild => ({
|
|||||||
browser: true
|
browser: true
|
||||||
}),
|
}),
|
||||||
typescript({
|
typescript({
|
||||||
compilerOptions: { outDir: './test/lib/tmp-ts' }
|
compilerOptions: { outDir: './test/lib' }
|
||||||
}),
|
}),
|
||||||
commonjs({
|
commonjs({
|
||||||
ignore: nodeBuiltinModules.concat(nodeDependencies),
|
ignore: nodeBuiltinModules.concat(nodeDependencies),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user