Skip to content

Commit

Permalink
Drop support for Node v14 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinnabhan committed May 18, 2023
1 parent 7d58ed1 commit 4ef38e7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .changeset/funny-horses-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@as-integrations/next': major
---

Drop support for Node v14
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
dist/

.gitignore
.npmrc
.prettierignore
package-lock.json
CODEOWNERS
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@types/jest": "29.5.1",
"@types/node": "14.18.47",
"@types/node": "16.18.31",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "5.59.5",
Expand All @@ -29,7 +29,7 @@
"wireit": "0.9.5"
},
"engines": {
"node": ">=14"
"node": ">=16"
},
"files": [
"dist/**/*"
Expand Down
6 changes: 3 additions & 3 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
matchUpdateTypes: ['patch', 'minor'],
groupSlug: 'all-minor-patch',
},
// We need to support Node v14, so we don't allow ourselves to use type
// definitions that would let us write >v14-specific code.
// We need to support Node v16, so we don't allow ourselves to use type
// definitions that would let us write >v16-specific code.
{
matchPackageNames: ['@types/node'],
allowedVersions: '14.x',
allowedVersions: '16.x',
},
// To make sure Renovate doesn't upgrade our Next.js 12 dependency to 13 we need to pin it.
{
Expand Down

0 comments on commit 4ef38e7

Please sign in to comment.