Skip to content

chore: bump upgradable deps without breaking changes #198

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/hip-bobcats-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"pretty-quick": minor
---

chore: bump upgradable deps without breaking changes
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
- push
- pull_request

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
Expand All @@ -13,6 +17,8 @@ jobs:
- 14
- 16
- 18
- 20
- 22
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
Expand All @@ -34,7 +40,7 @@ jobs:

- name: Lint
run: yarn lint
if: matrix.node == 18
if: matrix.node != 14 && matrix.node != 16
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js 18
- name: Setup Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 18
node-version: lts/*
cache: yarn

- name: Install Dependencies
Expand Down
4 changes: 4 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
compressionLevel: mixed

enableGlobalCache: true

enableTelemetry: false

nodeLinker: node-modules

plugins:
Expand Down
32 changes: 15 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,28 +59,28 @@
"dependencies": {
"execa": "^5.1.1",
"find-up": "^5.0.0",
"ignore": "^5.3.0",
"ignore": "^7.0.3",
"mri": "^1.2.0",
"picocolors": "^1.0.0",
"picomatch": "^3.0.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@1stg/lib-config": "^12.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@pkgr/rollup": "^4.1.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.11",
"@1stg/lib-config": "^13.0.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^18.6.1",
"@pkgr/rollup": "^6.0.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/picomatch": "^2.3.3",
"@unts/patch-package": "^8.0.0",
"@types/picomatch": "^3.0.2",
"@unts/patch-package": "^8.1.1",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.56.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"mock-fs": "^4.14.0",
"lint-staged": "^15.4.3",
"mock-fs": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.3",
"pretty-quick": "link:.",
Expand All @@ -92,10 +92,8 @@
"typescript": "^5.3.3"
},
"resolutions": {
"@1stg/prettier-config": "^4.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.3"
"prettier": "^3.5.3",
"rollup": "^3.29.5"
},
"commitlint": {
"extends": "@1stg"
Expand Down
Loading
Loading