-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Masafumi Koba <[email protected]>
- Loading branch information
1 parent
5860f3d
commit e1d2e98
Showing
10 changed files
with
1,443 additions
and
1,395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Changelog | ||
|
||
## 30.0.0 | ||
|
||
- Removed: `stylelint` less than `15.0.0` from peer dependencies. | ||
- Removed: 64 rules deprecated in [`[email protected]`](https://github.com/stylelint/stylelint/releases/tag/15.0.0). For details, see the [migration guide](https://github.com/stylelint/stylelint/blob/15.0.0/docs/migration-guide/to-15.md). | ||
- Fixed: `length-zero-no-unit` to ignore custom properties. | ||
- Fixed: `value-no-vendor-prefix` to ignore `-webkit-inline-box`. | ||
|
||
## 29.0.0 | ||
|
||
- Removed: `stylelint` less than `14.14.0` from peer dependencies. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
a { | ||
top: .2em; | ||
} | ||
|
||
@custom-media --FOO; | ||
|
||
:root { --FOO: 1px; } | ||
:root { | ||
--FOO: 1px; | ||
} | ||
|
||
@keyframes FOO { /* ... */ } | ||
@keyframes FOO { | ||
/* ... */ | ||
} | ||
|
||
.FOO { /* ... */ } | ||
.FOO { | ||
/* ... */ | ||
} | ||
|
||
#FOO { /* ... */ } | ||
#FOO { | ||
/* ... */ | ||
} |
Oops, something went wrong.