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 2dec774 commit 6ffc475
Show file tree
Hide file tree
Showing 6 changed files with 302 additions and 360 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-waves-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"every-ts": patch
---

Update deps
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"no-empty": 0,
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"@typescript-eslint/quotes": ["error", "backtick"],
"@typescript-eslint/no-import-type-side-effects": "error",
// In theory good, but less good when declaring a new interface and
// stopping to think about its contents.
Expand All @@ -39,7 +38,7 @@
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/no-empty-object-type": 0,
"@typescript-eslint/require-await": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/naming-convention": [
Expand Down
1 change: 1 addition & 0 deletions .ncurc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
target: (dependencyName, [{ semver, version, operator, major, minor, patch, release, build }]) => {
if (dependencyName === "eslint") return "minor";
if (dependencyName === "execa") return "minor";
if (dependencyName === "@types/node") return "minor";
if (major === "0") return "minor";
return "latest";
},
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@
"dependencies": {
"@zkochan/cmd-shim": "^6.0.0",
"adm-zip": "0.5.10",
"clipanion": "4.0.0-rc.3",
"clipanion": "4.0.0-rc.4",
"execa": "^8.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@changesets/cli": "^2.27.8",
"@tsconfig/node18": "^18.2.4",
"@types/adm-zip": "^0.5.5",
"@types/node": "^20.14.12",
"@types/node": "^18.19.54",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"dprint": "^0.47.2",
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
"typescript": "^5.6.2"
},
"scripts": {
"build": "tsc",
Expand All @@ -43,5 +43,5 @@
"engines": {
"node": ">= 18"
},
"packageManager": "pnpm@9.2.0+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390"
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}
Loading

0 comments on commit 6ffc475

Please sign in to comment.