From 59b2eb55f0d990aad6d95569c07e3c6d8b47cdc7 Mon Sep 17 00:00:00 2001 From: Robin Granger Date: Mon, 18 May 2020 15:35:48 +0200 Subject: [PATCH 1/3] chore(doc) : add information about the minimum node version supported --- README.md | 2 ++ package.json | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index a3ca1b195c..c00065be6b 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ It's mighty as it: - is **unopinionated** so that you can customize it to your exact needs - has a **growing community** and is used by [Facebook](https://code.facebook.com/posts/879890885467584/improving-css-quality-at-facebook-and-beyond/), [GitHub](https://github.com/primer/stylelint-config-primer) and [WordPress](https://github.com/ntwb/stylelint-config-wordpress/) +Minimum NodeJs version supported : v10.13.0 + ## Example output ![Example](https://github.com/stylelint/stylelint/raw/master/example.png?raw=true) diff --git a/package.json b/package.json index cc40e63203..b606042b65 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ }, "license": "MIT", "author": "stylelint", + "engines": { "node" : ">=10.13.0" }, "main": "lib/index.js", "bin": "bin/stylelint.js", "files": [ From b2ffe76a0d08eb45035d87e45127f8bfd9157018 Mon Sep 17 00:00:00 2001 From: Robin Granger Date: Mon, 18 May 2020 23:00:31 +0200 Subject: [PATCH 2/3] chore(readme) : removes node supported version --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index c00065be6b..a3ca1b195c 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,6 @@ It's mighty as it: - is **unopinionated** so that you can customize it to your exact needs - has a **growing community** and is used by [Facebook](https://code.facebook.com/posts/879890885467584/improving-css-quality-at-facebook-and-beyond/), [GitHub](https://github.com/primer/stylelint-config-primer) and [WordPress](https://github.com/ntwb/stylelint-config-wordpress/) -Minimum NodeJs version supported : v10.13.0 - ## Example output ![Example](https://github.com/stylelint/stylelint/raw/master/example.png?raw=true) From 5d768d022bef8b8ac43818fc3d45483e235f77e5 Mon Sep 17 00:00:00 2001 From: RGR Date: Wed, 20 May 2020 09:14:50 +0200 Subject: [PATCH 3/3] chore(format) : run npm run format --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b606042b65..010230c7ee 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,6 @@ }, "license": "MIT", "author": "stylelint", - "engines": { "node" : ">=10.13.0" }, "main": "lib/index.js", "bin": "bin/stylelint.js", "files": [ @@ -187,5 +186,8 @@ "prettier": "^2.0.5", "remark-cli": "^8.0.0", "typescript": "^3.9.2" + }, + "engines": { + "node": ">=10.13.0" } }