Skip to content

Commit 76c5371

Browse files
authored
chore: bump upgradable deps without breaking changes (#198)
1 parent b5e00ba commit 76c5371

File tree

6 files changed

+3489
-3037
lines changed

6 files changed

+3489
-3037
lines changed

.changeset/hip-bobcats-burn.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"pretty-quick": minor
3+
---
4+
5+
chore: bump upgradable deps without breaking changes

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
- push
55
- pull_request
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
ci:
913
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
@@ -13,6 +17,8 @@ jobs:
1317
- 14
1418
- 16
1519
- 18
20+
- 20
21+
- 22
1622
os:
1723
- ubuntu-latest
1824
runs-on: ${{ matrix.os }}
@@ -34,7 +40,7 @@ jobs:
3440

3541
- name: Lint
3642
run: yarn lint
37-
if: matrix.node == 18
43+
if: matrix.node != 14 && matrix.node != 16
3844
env:
3945
EFF_NO_LINK_RULES: true
4046
PARSER_NO_WATCH: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup Node.js 18
19+
- name: Setup Node.js LTS
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: lts/*
2323
cache: yarn
2424

2525
- name: Install Dependencies

.yarnrc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
compressionLevel: mixed
2+
13
enableGlobalCache: true
24

5+
enableTelemetry: false
6+
37
nodeLinker: node-modules
48

59
plugins:

package.json

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -59,28 +59,28 @@
5959
"dependencies": {
6060
"execa": "^5.1.1",
6161
"find-up": "^5.0.0",
62-
"ignore": "^5.3.0",
62+
"ignore": "^7.0.3",
6363
"mri": "^1.2.0",
6464
"picocolors": "^1.0.0",
6565
"picomatch": "^3.0.1",
6666
"tslib": "^2.6.2"
6767
},
6868
"devDependencies": {
69-
"@1stg/lib-config": "^12.0.1",
70-
"@changesets/changelog-github": "^0.5.0",
71-
"@changesets/cli": "^2.27.1",
72-
"@commitlint/cli": "^17.8.1",
73-
"@pkgr/rollup": "^4.1.3",
74-
"@total-typescript/ts-reset": "^0.5.1",
75-
"@types/jest": "^29.5.11",
69+
"@1stg/lib-config": "^13.0.0",
70+
"@changesets/changelog-github": "^0.5.1",
71+
"@changesets/cli": "^2.28.1",
72+
"@commitlint/cli": "^18.6.1",
73+
"@pkgr/rollup": "^6.0.0",
74+
"@total-typescript/ts-reset": "^0.6.1",
75+
"@types/jest": "^29.5.14",
7676
"@types/mock-fs": "^4.13.4",
77-
"@types/picomatch": "^2.3.3",
78-
"@unts/patch-package": "^8.0.0",
77+
"@types/picomatch": "^3.0.2",
78+
"@unts/patch-package": "^8.1.1",
7979
"clean-pkg-json": "^1.2.0",
80-
"eslint": "^8.56.0",
80+
"eslint": "^8.57.1",
8181
"jest": "^29.7.0",
82-
"lint-staged": "^13.3.0",
83-
"mock-fs": "^4.14.0",
82+
"lint-staged": "^15.4.3",
83+
"mock-fs": "^5.5.0",
8484
"npm-run-all": "^4.1.5",
8585
"prettier": "^3.2.3",
8686
"pretty-quick": "link:.",
@@ -92,10 +92,8 @@
9292
"typescript": "^5.3.3"
9393
},
9494
"resolutions": {
95-
"@1stg/prettier-config": "^4.0.1",
96-
"eslint-config-prettier": "^9.1.0",
97-
"eslint-plugin-prettier": "^5.1.3",
98-
"prettier": "^3.2.3"
95+
"prettier": "^3.5.3",
96+
"rollup": "^3.29.5"
9997
},
10098
"commitlint": {
10199
"extends": "@1stg"

0 commit comments

Comments
 (0)