bjankord / stylelint-config-sass-guidelines

⚙ A stylelint config inspired by https://sass-guidelin.es/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add engines entry into package.json to denote project requires node 6 or above similar to stylelint.

bjankord opened this issue · comments

With stylelint v9, they removed Node.JS 4.x support. Node.js 6.x or greater is now required.

stylelint includes a package entry for engines to denote it requires node v6 or above

"engines": {
    "node": ">=6"
  },

I'm planning on doing the same for this package. While I'm unsure if anyone is using Node.JS < 6.x with this package, this would be breaking change for those users. This change will then trigger a new major release, stylelint-config-sass-guidelines v5 once it is ready to be released. For users on Node.JS 6.x or above, they should notice no change in behavior or functionality.