grunt-stylelint
Advanced tools
Comparing version 0.19.0 to 0.20.0
# grunt-stylelint Release History | ||
## v0.20.0 / 2024-05-03 | ||
* Drop Node.js 16 support (James D. Forrester) | ||
* Switch to stylelint 16.x (in CommonJS mode) (James D. Forrester) | ||
* build: Upgrade eslint-config-wikimedia to 0.27.0 (James D. Forrester) | ||
* build: Upgrade grunt-contrib-nodeunit to d73c0771a pre-release for security issues (James D. Forrester) | ||
## v0.19.0 / 2023-07-12 | ||
@@ -4,0 +10,0 @@ * Raise stylelint requirement from 14.x to 15.x (James D. Forrester) |
{ | ||
"name": "grunt-stylelint", | ||
"version": "0.19.0", | ||
"version": "0.20.0", | ||
"description": "A Grunt checker for CSS files using Stylelint", | ||
@@ -26,17 +26,17 @@ "scripts": { | ||
"peerDependencies": { | ||
"stylelint": "15.x" | ||
"stylelint": "16.x" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
"node": ">=18.12.0" | ||
}, | ||
"devDependencies": { | ||
"eslint-config-wikimedia": "0.25.1", | ||
"eslint-config-wikimedia": "0.27.0", | ||
"grunt": "1.6.1", | ||
"grunt-contrib-clean": "2.0.1", | ||
"grunt-contrib-nodeunit": "5.0.0", | ||
"grunt-contrib-nodeunit": "gruntjs/grunt-contrib-nodeunit#d73c0771a8b49712d44113ce60fc906b14040880", | ||
"grunt-eslint": "24.2.0", | ||
"lodash": "4.17.21", | ||
"postcss-less": "^6.0.0", | ||
"stylelint": "^15.10.1" | ||
"stylelint": "^16.5.0" | ||
} | ||
} |
@@ -44,2 +44,5 @@ /*! | ||
// Hide the warning from Stylelint that we're using it in CJS mode. | ||
options.quietDeprecationWarnings = true; | ||
styleLint.lint( options ).then( function ( data ) { | ||
@@ -46,0 +49,0 @@ if ( data.output ) { |
test/output/simpleRule.css | ||
2:9 ✖ Unexpected invalid hex color "#DDQ" color-no-invalid-hex | ||
2:9 ✖ Unexpected invalid hex color "#DDQ" color-no-invalid-hex | ||
1 problem (1 error, 0 warnings) | ||
✖ 1 problem (1 error, 0 warnings) | ||
17618
138