Skip to content

Commit

Permalink
Bump stylelint-config-standard from 30.0.1 to 32.0.0 (#84)
Browse files Browse the repository at this point in the history
* Bump stylelint-config-standard from 30.0.1 to 32.0.0

Bumps [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) from 30.0.1 to 32.0.0.
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@30.0.1...32.0.0)

---
updated-dependencies:
- dependency-name: stylelint-config-standard
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix media queries to match media-feature-range-notation rule

https://stylelint.io/user-guide/rules/media-feature-range-notation/

* Update stylelint peer dep to ^15.4.0

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Krister Kari <krister@sent.at>
  • Loading branch information
dependabot[bot] and kristerkari committed Apr 10, 2023
1 parent 22dfbaa commit e4cbb06
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 39 deletions.
6 changes: 3 additions & 3 deletions __tests__/valid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ $theme-colors: (

/* Single-line comment */

@media (min-width: 60em) {
@media (width >= 60em) {
.selector {
// Flush to parent comment
@include corner-icon("mail", top, left);
Expand Down Expand Up @@ -139,8 +139,8 @@ $theme-colors: (
// Multi-line double-slash comment
// comment
@media
screen and (min-resolution: 192dpi),
screen and (min-resolution: 2dppx) {
screen and (resolution >= 192dpi),
screen and (resolution >= 2dppx) {
.selector {
background-image:
repeating-linear-gradient(
Expand Down
52 changes: 18 additions & 34 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"dependencies": {
"stylelint-config-recommended-scss": "^10.0.0",
"stylelint-config-standard": "^30.0.1"
"stylelint-config-standard": "^32.0.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
Expand All @@ -63,7 +63,7 @@
},
"peerDependencies": {
"postcss": "^8.3.3",
"stylelint": "^15.0.0"
"stylelint": "^15.4.0"
},
"peerDependenciesMeta": {
"postcss": {
Expand Down

0 comments on commit e4cbb06

Please sign in to comment.