Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 4343a95

Browse files
committed
Update packages
1 parent 5c6866d commit 4343a95

File tree

13 files changed

+791
-543
lines changed

13 files changed

+791
-543
lines changed

.github/renovate.json5

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": ["config:base", "schedule:nonOfficeHours", "group:allNonMajor"],
4-
"timezone": "Europe/Berlin",
3+
"extends": [
4+
"config:base",
5+
"schedule:earlyMondays",
6+
"group:allNonMajor",
7+
":prHourlyLimitNone",
8+
"helpers:pinGitHubActionDigests"
9+
],
510
"labels": ["dependencies"],
11+
"lockFileMaintenance": {
12+
"enabled": true
13+
},
614
"reviewersFromCodeOwners": true,
715
"rangeStrategy": "bump",
816
"packageRules": [
@@ -32,7 +40,7 @@
3240
},
3341
{
3442
"groupName": "prettier",
35-
"matchPackageNames": ["@types/prettier", "prettier"]
43+
"matchPackageNames": ["prettier"]
3644
},
3745
{
3846
"groupName": "typescript",

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
with:
17-
fetch-depth: 0
1816

1917
- name: Install pnpm
2018
uses: pnpm/action-setup@v2

.github/workflows/publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
13-
with:
14-
fetch-depth: 0
1513

1614
- name: Install pnpm
1715
uses: pnpm/action-setup@v2

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Provides several plugin types for eslint-define-config",
55
"private": true,
66
"scripts": {
7-
"clean": "rimraf node_modules",
7+
"clean": "tsx scripts/clean.ts",
88
"generate:plugin-dts": "tsx scripts/generate-plugin-dts.ts",
99
"format": "prettier --cache --write .",
1010
"lint:fix": "eslint --cache --cache-strategy content --report-unused-disable-directives --fix .",
@@ -18,11 +18,11 @@
1818
"@eslint-types/prettier": "workspace:~",
1919
"@eslint-types/typescript-eslint": "workspace:~",
2020
"@eslint-types/unicorn": "workspace:~",
21-
"@types/eslint": "~8.56.3",
21+
"@types/eslint": "~8.56.5",
2222
"@types/json-schema": "~7.0.15",
23-
"@types/node": "~20.11.20",
24-
"@typescript-eslint/eslint-plugin": "~7.0.2",
25-
"@typescript-eslint/parser": "~7.0.2",
23+
"@types/node": "~20.11.28",
24+
"@typescript-eslint/eslint-plugin": "~7.2.0",
25+
"@typescript-eslint/parser": "~7.2.0",
2626
"change-case": "~5.4.3",
2727
"eslint": "~8.57.0",
2828
"eslint-config-prettier": "~9.1.0",
@@ -38,9 +38,9 @@
3838
"prettier-plugin-organize-imports": "~3.2.4",
3939
"rimraf": "~5.0.5",
4040
"tsx": "~4.7.1",
41-
"typescript": "~5.3.3"
41+
"typescript": "~5.4.2"
4242
},
43-
"packageManager": "pnpm@8.15.4",
43+
"packageManager": "pnpm@8.15.5",
4444
"engines": {
4545
"node": ">=18.0.0",
4646
"npm": ">=9.0.0",

0 commit comments

Comments
 (0)