Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Oct 1, 2024
1 parent b5d50e5 commit bfe39b3
Show file tree
Hide file tree
Showing 4 changed files with 509 additions and 594 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false,
"ecmaVersion": "latest",
"sourceType": "module",
"project": true
Expand All @@ -25,7 +26,7 @@
"simple-import-sort/exports": "error",
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/no-empty-object-type": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-explicit-any": 0,
Expand Down
1 change: 1 addition & 0 deletions .ncurc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module.exports = {
if (dependencyName === "eslint") return "patch";
if (dependencyName === "semver") return "patch"; // Matching dep from @actions/*
if (dependencyName === "@types/semver") return "patch"; // Matching dep from @actions/*
if (dependencyName === "@types/node") return "minor";
if (major === "0") return "minor";
return "latest";
},
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.15.0",
"@types/node": "^20.16.10",
"@types/semver": "^6.2.7",
"@types/shell-quote": "^1.7.5",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.1",
"dprint": "^0.47.2",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.4",
"husky": "^9.1.6",
"jest-serializer-path": "^0.1.15",
"klona": "^2.0.6",
"rimraf": "^6.0.1",
"typescript": "~5.5.4",
"vitest": "^2.0.5"
"typescript": "~5.6.2",
"vitest": "^2.1.1"
},
"overrides": {
"vite": {
Expand Down Expand Up @@ -75,5 +75,5 @@
"after:git:release": "(git tag -d v2 && git push origin :refs/tags/v2) || true && git tag v2 && git push origin v2"
}
},
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}
Loading

0 comments on commit bfe39b3

Please sign in to comment.