Skip to content

Commit

Permalink
chore: bump upgradable deps without breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Mar 4, 2025
1 parent b5e00ba commit 4730545
Show file tree
Hide file tree
Showing 5 changed files with 3,668 additions and 3,031 deletions.
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
29 changes: 13 additions & 16 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,9 +92,6 @@
"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"
},
"commitlint": {
Expand Down
Loading

0 comments on commit 4730545

Please sign in to comment.