Skip to content

Commit

Permalink
Remove Node.js 12 support (#6477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Nov 18, 2022
1 parent aab9638 commit 3b18d24
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/great-queens-peel.md
@@ -0,0 +1,5 @@
---
"stylelint": major
---

Removed: Node.js 12 support
7 changes: 7 additions & 0 deletions docs/migration-guide/to-15.md
Expand Up @@ -25,3 +25,10 @@ If you would like to keep the previous behavior, you should change your config t
]
}
```

## Node.js 12

Support for Node.js 12 was dropped. You should use the following or higher versions of Node.js:

- 14.13.1
- 16.0.0
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -192,6 +192,6 @@
"typescript": "^4.8.4"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": "^14.13.1 || >=16.0.0"
}
}
4 changes: 2 additions & 2 deletions tsconfig.json
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2019",
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2019"],
"lib": ["ES2020"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
Expand Down

0 comments on commit 3b18d24

Please sign in to comment.