Skip to content

Commit

Permalink
chore: upgrade pnpm and drop Node 14 (#620)
Browse files Browse the repository at this point in the history
* chore: upgrade dependencies

* upgrade one more

* update pnpm

* update package.json
  • Loading branch information
benmccann committed Dec 17, 2023
1 parent 88f713c commit 7f42697
Show file tree
Hide file tree
Showing 3 changed files with 1,810 additions and 1,604 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Expand Up @@ -8,11 +8,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
version: 7
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
cache: 'pnpm'
- run: pnpm install
- run: pnpm lint
Expand All @@ -21,16 +19,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14, 16, 18]
node-version: [16, 18, 20]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
Expand Down
20 changes: 11 additions & 9 deletions package.json
Expand Up @@ -18,8 +18,10 @@
"coffeescript"
],
"engines": {
"node": ">= 14.10.0"
"node": ">= 16.0.0",
"pnpm": "^8.0.0"
},
"packageManager": "pnpm@8.12.1",
"volta": {
"node": "14.19.2"
},
Expand Down Expand Up @@ -56,17 +58,17 @@
]
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@kiwi/eslint-config": "^2.0.2",
"@kiwi/prettier-config": "^2.0.2",
"@types/babel__core": "^7.1.20",
"@types/babel__core": "^7.20.5",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.34",
"@types/stylus": "^0.48.38",
"autoprefixer": "^9.8.8",
"autoprefixer": "^10.4.16",
"babel-minify": "^0.5.2",
"coffeescript": "^2.7.0",
"conventional-changelog-cli": "^2.2.2",
Expand All @@ -75,22 +77,22 @@
"jest": "^29.5.0",
"less": "^3.13.1",
"lint-staged": "^10.5.4",
"postcss": "^8.4.19",
"postcss-easy-import": "^3.0.0",
"postcss": "^8.4.32",
"postcss-easy-import": "^4.0.0",
"postcss-load-config": "^3.1.4",
"prettier": "^2.8.1",
"pug": "^3.0.2",
"sass": "^1.56.2",
"stylus": "^0.55.0",
"sugarss": "^4.0.0",
"svelte": "^3.54.0",
"ts-jest": "^29.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/pug": "^2.0.6",
"detect-indent": "^6.1.0",
"magic-string": "^0.27.0",
"magic-string": "^0.30.5",
"sorcery": "^0.11.0",
"strip-indent": "^3.0.0"
},
Expand Down

0 comments on commit 7f42697

Please sign in to comment.