Skip to content

Commit 2635fbe

Browse files
committed
4.0.0
1 parent 150a017 commit 2635fbe

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes to Stylelint Use Nesting
22

3+
### 4.0.0 (Jul 29, 2022)
4+
5+
- Updated: peer `stylelint` to >= 10 (major)
6+
- Updated: Node 16+ compatibility (major)
7+
- Added: attribute selector support (minor)
8+
39
### 3.0.0 (May 12, 2020)
410

511
- Updated: peer `stylelint` to 10 - 13 (major)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Stylelint Use Nesting [<img src="https://jonathantneal.github.io/stylelint-logo.svg" alt="stylelint" width="90" height="90" align="right">][stylelint]
1+
# Stylelint Use Nesting [<img src="https://jonneal.dev/stylelint-logo.svg" alt="stylelint" width="90" height="90" align="right">][stylelint]
22

33
[![NPM Version][npm-img]][npm-url]
44
[![Build Status][cli-img]][cli-url]
@@ -115,13 +115,13 @@ or regular expression.
115115
}
116116
```
117117

118-
[cli-img]: https://img.shields.io/travis/csstools/stylelint-use-nesting/master.svg
118+
[cli-img]: https://img.shields.io/travis/csstools/stylelint-use-nesting/main.svg
119119
[cli-url]: https://travis-ci.org/csstools/stylelint-use-nesting
120120
[git-img]: https://img.shields.io/badge/support-chat-blue.svg
121121
[git-url]: https://gitter.im/stylelint/stylelint
122122
[npm-img]: https://img.shields.io/npm/v/stylelint-use-nesting.svg
123123
[npm-url]: https://www.npmjs.com/package/stylelint-use-nesting
124124

125125
[stylelint]: https://github.com/stylelint/stylelint
126-
[stylelint configuration]: https://github.com/stylelint/stylelint/blob/master/docs/user-guide/configuration.md#readme
126+
[stylelint configuration]: https://github.com/stylelint/stylelint/blob/main/docs/user-guide/configuration.md#readme
127127
[Stylelint Use Nesting]: https://github.com/csstools/stylelint-use-nesting

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stylelint-use-nesting",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "Enforce nesting when it is possible in CSS",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
@@ -23,9 +23,8 @@
2323
"test:tape": "stylelint-tape"
2424
},
2525
"engines": {
26-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
26+
"node": ">=16.0.0"
2727
},
28-
"dependencies": {},
2928
"devDependencies": {
3029
"@babel/core": "^7.9.6",
3130
"@babel/preset-env": "^7.9.6",
@@ -35,11 +34,11 @@
3534
"pre-commit": "^1.2.2",
3635
"rollup": "^2.9.1",
3736
"rollup-plugin-babel": "^4.4.0",
38-
"stylelint": "^12.0.0",
39-
"stylelint-tape": "^2.0.0"
37+
"stylelint": "^14.9.1",
38+
"stylelint-tape": "^3.0.0"
4039
},
4140
"peerDependencies": {
42-
"stylelint": "10 - 14"
41+
"stylelint": ">= 10"
4342
},
4443
"eslintConfig": {
4544
"extends": "dev",

0 commit comments

Comments
 (0)