Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Sketon committed Oct 5, 2024
1 parent 661663d commit 18ae8b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,21 @@
"test-cov": "c8 --reporter=lcov --reporter=text-summary npm test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chai": "^4.3.16",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.7",
"@types/node": "^20.10.6",
"@types/mocha": "^10.0.8",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chai": "^4.5.0",
"jsdom": "^25.0.1",
"mocha": "^10.6.0",
"rollup": "^4.9.2",
"mocha": "^10.7.3",
"rollup": "^4.24.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.3.3"
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
Expand Down
3 changes: 1 addition & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import typescript from '@rollup/plugin-typescript';
import commonjs from '@rollup/plugin-commonjs';
import terser from '@rollup/plugin-terser';

export default [
Expand Down Expand Up @@ -27,7 +26,7 @@ export default [
plugins: [terser()],
},
],
plugins: [commonjs(), typescript({ module: "ESNext" })],
plugins: [typescript({ module: "ESNext" })],
}
]

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"types": ["node", "mocha"],
"types": ["mocha"],
"lib": ["dom", "ESNext"]
},
"include": ["./src/**/*"],
Expand Down

0 comments on commit 18ae8b4

Please sign in to comment.