Skip to content

Commit 6ffc475

Browse files
committed
Update deps
1 parent 2dec774 commit 6ffc475

File tree

6 files changed

+302
-360
lines changed

6 files changed

+302
-360
lines changed

.changeset/odd-waves-promise.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"every-ts": patch
3+
---
4+
5+
Update deps

.eslintrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"no-empty": 0,
2626
"simple-import-sort/imports": "error",
2727
"simple-import-sort/exports": "error",
28-
"@typescript-eslint/quotes": ["error", "backtick"],
2928
"@typescript-eslint/no-import-type-side-effects": "error",
3029
// In theory good, but less good when declaring a new interface and
3130
// stopping to think about its contents.
@@ -39,7 +38,7 @@
3938
"@typescript-eslint/no-unsafe-call": 0,
4039
"@typescript-eslint/no-unsafe-member-access": 0,
4140
"@typescript-eslint/no-unsafe-return": 0,
42-
"@typescript-eslint/ban-types": 0,
41+
"@typescript-eslint/no-empty-object-type": 0,
4342
"@typescript-eslint/require-await": 0,
4443
"@typescript-eslint/restrict-template-expressions": 0,
4544
"@typescript-eslint/naming-convention": [

.ncurc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module.exports = {
22
target: (dependencyName, [{ semver, version, operator, major, minor, patch, release, build }]) => {
33
if (dependencyName === "eslint") return "minor";
44
if (dependencyName === "execa") return "minor";
5+
if (dependencyName === "@types/node") return "minor";
56
if (major === "0") return "minor";
67
return "latest";
78
},

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,24 @@
1616
"dependencies": {
1717
"@zkochan/cmd-shim": "^6.0.0",
1818
"adm-zip": "0.5.10",
19-
"clipanion": "4.0.0-rc.3",
19+
"clipanion": "4.0.0-rc.4",
2020
"execa": "^8.0.1",
2121
"semver": "^7.6.3"
2222
},
2323
"devDependencies": {
24-
"@changesets/cli": "^2.27.7",
24+
"@changesets/cli": "^2.27.8",
2525
"@tsconfig/node18": "^18.2.4",
2626
"@types/adm-zip": "^0.5.5",
27-
"@types/node": "^20.14.12",
27+
"@types/node": "^18.19.54",
2828
"@types/semver": "^7.5.8",
29-
"@typescript-eslint/eslint-plugin": "^7.17.0",
30-
"@typescript-eslint/parser": "^7.17.0",
29+
"@typescript-eslint/eslint-plugin": "^8.8.0",
30+
"@typescript-eslint/parser": "^8.8.0",
3131
"dprint": "^0.47.2",
32-
"eslint": "^8.57.0",
32+
"eslint": "^8.57.1",
3333
"eslint-plugin-simple-import-sort": "^12.1.1",
3434
"eslint-plugin-unicorn": "^55.0.0",
3535
"rimraf": "^6.0.1",
36-
"typescript": "^5.5.4"
36+
"typescript": "^5.6.2"
3737
},
3838
"scripts": {
3939
"build": "tsc",
@@ -43,5 +43,5 @@
4343
"engines": {
4444
"node": ">= 18"
4545
},
46-
"packageManager": "pnpm@9.2.0+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390"
46+
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
4747
}

0 commit comments

Comments
 (0)