Skip to content

Commit

Permalink
Upgrade node and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rconner46 committed Oct 15, 2024
1 parent 6f5db4f commit eb9c597
Show file tree
Hide file tree
Showing 5 changed files with 515 additions and 610 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.6.0
20.11.1
11 changes: 11 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";


export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{languageOptions: { globals: globals.node }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];
30 changes: 13 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,35 +43,31 @@
"reporter"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.2.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.0.3",
"rollup": "3.29.5",
"rollup": "4.24.0",
"rollup-plugin-dts": "^6.0.2",
"ts-jest": "29.2.3",
"ts-node": "10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"yarn": "^1.22.19"
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"yarn": "^1.22.22"
},
"dependencies": {
"@jest/reporters": "^29.7.0",
"@jest/test-result": "^29.7.0",
"@jest/types": "^29.6.3",
"applause-reporter-common": "https://github.com/ApplauseOSS/applause-reporter-common#master",
"axios": "^1.5.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"declarationDir": "@types",
"declarationDir": "@types/",
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"strict": true,
Expand Down
Loading

0 comments on commit eb9c597

Please sign in to comment.