diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa1c3d..751f2fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## next +## 2.0.0 (December 14, 2021) +- Added `syntaxExtensions` option to specify syntax extensions, i.e. `sass` or/and `less`. For now **the plugin validates CSS only by default** - Added at-rule validation for name, prelude and descriptors - Added `atrules` option to extend or alter at-rule syntax definition dictionary or disable at-rule validation when `false` is passed as a value for the option - Added `ignoreAtrules` option to specify at-rule names which should not be validated -- Added `syntaxExtensions` option to specify syntax extensions, i.e. `sass` or/and `less` - Used `isStandardSyntax*()` helpers from `stylelint` to reduce failures for non-standard syntax (e.g. Less or Sass) - Added support for Less & Sass namespaces, a value with such constructions are ignored now instead of failure (#39) - Added a column to mismatch error details diff --git a/package-lock.json b/package-lock.json index 18a521d..2d89d79 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "stylelint-csstree-validator", - "version": "1.9.0", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "stylelint-csstree-validator", - "version": "1.9.0", + "version": "2.0.0", "license": "MIT", "dependencies": { "css-tree": "^2.0.1" diff --git a/package.json b/package.json index 5c89e53..db184fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stylelint-csstree-validator", - "version": "1.9.0", + "version": "2.0.0", "description": "Stylelint plugin to validate CSS syntax", "repository": "csstree/stylelint-validator", "author": "Roman Dvornov ",