Skip to content

Commit

Permalink
Update engine to node v20, update dependencies
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
joshbwlng committed Feb 13, 2025
1 parent 78e39f1 commit e5347fe
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
],
"license": "AGPL-3.0",
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
"node": ">=22.4.0",
"npm": ">=10.7.0"
},
"repository": {
"type": "git",
Expand All @@ -39,21 +39,21 @@
"build": "npm run clean && npm run build:cjs && npm run build:browser"
},
"devDependencies": {
"@balena/lint": "^6.2.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"@balena/lint": "^9.1.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"rimraf": "^4.0.4",
"rollup-plugin-ts": "^3.2.0",
"ts-node": "^10.9.1",
"rollup": "^3.12.0",
"typescript": "^4.9.4"
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"rollup": "^4.34.6",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.ts": [
Expand All @@ -70,6 +70,6 @@
"publishedAt": "2023-03-28T01:04:14.175Z"
},
"dependencies": {
"typed-error": "^3.2.1"
"typed-error": "^3.2.2"
}
}
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ts from "rollup-plugin-ts";
import typescript from "@rollup/plugin-typescript";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import terser from "@rollup/plugin-terser";
Expand All @@ -10,7 +10,7 @@ export default {
format: "iife",
},
plugins: [
ts({
typescript({
tsconfig: "tsconfig.browser.json",
}),
nodeResolve(),
Expand Down

0 comments on commit e5347fe

Please sign in to comment.