Skip to content

Commit d62499d

Browse files
chore(deps-dev): bump the all group across 1 directory with 3 updates (#494)
Updates eslint to v9 Updates `@nihalgonsalves/esconfig` from 0.9.22 to 0.10.11 - [Release notes](https://github.com/nihalgonsalves/esconfig/releases) - [Changelog](https://github.com/nihalgonsalves/esconfig/blob/main/CHANGELOG.md) - [Commits](nihalgonsalves/esconfig@esconfig-v0.9.22...esconfig-v0.10.11) Updates `lefthook` from 1.7.11 to 1.7.18 - [Release notes](https://github.com/evilmartians/lefthook/releases) - [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md) - [Commits](evilmartians/lefthook@v1.7.11...v1.7.18) Updates `typescript` from 5.5.4 to 5.6.3 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.5.4...v5.6.3) --- updated-dependencies: - dependency-name: "@nihalgonsalves/esconfig" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all - dependency-name: lefthook dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nihal Gonsalves <nihal@nihalgonsalves.com>
1 parent 07e62b9 commit d62499d

File tree

7 files changed

+682
-812
lines changed

7 files changed

+682
-812
lines changed

.github/dependabot.yml

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ updates:
1313
- dependency-name: "@types/node"
1414
update-types:
1515
- "version-update:semver-major"
16-
- dependency-name: "eslint"
17-
update-types:
18-
- "version-update:semver-major"
1916

2017
- package-ecosystem: github-actions
2118
directory: "/"

.prettierrc

-1
This file was deleted.

eslint.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import tseslint from "typescript-eslint";
2+
3+
import sharedConfig from "@nihalgonsalves/esconfig/eslint.config.shared.js";
4+
5+
export default tseslint.config(
6+
{ ignores: ["eslint.config.js", "build/**/*"] },
7+
...sharedConfig,
8+
);

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,24 @@
55
"type": "module",
66
"author": "",
77
"license": "",
8-
"packageManager": "yarn@4.1.1+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781",
8+
"packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
99
"scripts": {
10-
"dev": "ts-node-dev src/index.ts",
10+
"dev": "tsx src/index.ts",
1111
"start": "NODE_ENV=production node build/index.js",
1212
"build": "tsc",
1313
"test": "exit 0",
14-
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src/",
14+
"lint": "eslint",
1515
"format": "prettier . --write",
1616
"format:check": "prettier . --check"
1717
},
1818
"devDependencies": {
19-
"@nihalgonsalves/esconfig": "^0.9.22",
19+
"@nihalgonsalves/esconfig": "^0.10.12",
2020
"@types/node": "20",
21-
"eslint": "^8.57.0",
22-
"lefthook": "^1.7.11",
21+
"eslint": "^9.12.0",
22+
"lefthook": "^1.7.18",
2323
"prettier": "^3.3.3",
24-
"ts-node-dev": "^2.0.0",
25-
"typescript": "^5.5.4"
24+
"tsx": "^4.19.1",
25+
"typescript": "^5.6.3",
26+
"typescript-eslint": "^8.9.0"
2627
}
2728
}

src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
// eslint-disable-next-line no-console
21
console.log("🚀");

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@nihalgonsalves/esconfig",
2+
"extends": "@nihalgonsalves/esconfig/tsconfig.shared.json",
33
"compilerOptions": {
44
"outDir": "./build",
55
"rootDir": "./src"

0 commit comments

Comments
 (0)