Skip to content

Commit 5a42b41

Browse files
chore: bump the all group with 6 updates (#526)
* chore: bump the all group with 6 updates Bumps the all group with 6 updates: | Package | From | To | | --- | --- | --- | | [@nihalgonsalves/esconfig](https://github.com/nihalgonsalves/esconfig) | `0.9.1` | `0.9.5` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.21` | `18.19.28` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.1.0` | `7.4.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.1.0` | `7.4.0` | | [lefthook](https://github.com/evilmartians/lefthook) | `1.6.4` | `1.6.7` | | [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.3` | Updates `@nihalgonsalves/esconfig` from 0.9.1 to 0.9.5 - [Release notes](https://github.com/nihalgonsalves/esconfig/releases) - [Changelog](https://github.com/nihalgonsalves/esconfig/blob/main/CHANGELOG.md) - [Commits](nihalgonsalves/esconfig@esconfig-v0.9.1...esconfig-v0.9.5) Updates `@types/node` from 18.19.21 to 18.19.28 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 7.1.0 to 7.4.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.4.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 7.1.0 to 7.4.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.4.0/packages/parser) Updates `lefthook` from 1.6.4 to 1.6.7 - [Release notes](https://github.com/evilmartians/lefthook/releases) - [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md) - [Commits](evilmartians/lefthook@v1.6.4...v1.6.7) Updates `typescript` from 5.3.3 to 5.4.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.3.3...v5.4.3) --- updated-dependencies: - dependency-name: "@nihalgonsalves/esconfig" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all - dependency-name: "@typescript-eslint/parser" 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] <[email protected]> * chore: fix new lint issues * chore: dedupe --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nihal Gonsalves <[email protected]>
1 parent c04ed48 commit 5a42b41

File tree

4 files changed

+543
-419
lines changed

4 files changed

+543
-419
lines changed

.eslintrc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"extends": ["./node_modules/@nihalgonsalves/esconfig/.eslintrc"],
33
"rules": {
4-
"@typescript-eslint/no-duplicate-enum-values": "off"
5-
}
4+
"@typescript-eslint/no-duplicate-enum-values": "off",
5+
"@typescript-eslint/restrict-template-expressions": [
6+
"error",
7+
{ "allowNumber": true },
8+
],
9+
},
610
}

bin/sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const writeEnum = (enumString: string) => {
112112

113113
void getEnum()
114114
.then(writeEnum)
115-
.catch((e) => {
115+
.catch((e: unknown) => {
116116
console.error(e);
117117
process.exit(1);
118118
});

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"homepage": "https://github.com/nihalgonsalves/pg-error-enum#readme",
1515
"main": "dist/index.js",
1616
"types": "dist/index.d.ts",
17-
"packageManager": "[email protected].0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb",
17+
"packageManager": "[email protected].1+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781",
1818
"scripts": {
1919
"sync": "tsx bin/sync.ts",
2020
"clean": "rm -rf ./dist/",
@@ -30,16 +30,16 @@
3030
"dist/**/*"
3131
],
3232
"devDependencies": {
33-
"@nihalgonsalves/esconfig": "^0.9.1",
33+
"@nihalgonsalves/esconfig": "^0.9.5",
3434
"@types/node": "^18",
35-
"@typescript-eslint/eslint-plugin": "^7.1.0",
36-
"@typescript-eslint/parser": "^7.1.0",
35+
"@typescript-eslint/eslint-plugin": "^7.4.0",
36+
"@typescript-eslint/parser": "^7.4.0",
3737
"eslint": "^8.57.0",
3838
"eslint-plugin-import": "^2.29.1",
39-
"lefthook": "^1.6.4",
39+
"lefthook": "^1.6.7",
4040
"prettier": "^3.2.5",
4141
"tsx": "^4.7.1",
42-
"typescript": "^5.3.3",
42+
"typescript": "^5.4.3",
4343
"zod": "^3.22.4"
4444
}
4545
}

0 commit comments

Comments
 (0)