Skip to content

Commit d6ce44b

Browse files
committed
2.0.3
1 parent 8a902dc commit d6ce44b

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.0.3 - 2016-09-06
2+
3+
- Fixed: regression of 2.0.2 due to a transpilation upgrade
4+
(@MoOx)
5+
16
# 2.0.2 - 2016-09-06
27

38
- Fixed: .class:matches(element) now produce element.class

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-selector-matches",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "PostCSS plugin to transform :matches() W3C CSS pseudo class to more compatible CSS selectors",
55
"keywords": [
66
"postcss",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function explodeSelectors(options = {}) {
1212

1313
}
1414

15-
export default postcss.plugin(
15+
module.exports = postcss.plugin(
1616
"postcss-selector-matches",
1717
explodeSelectors
1818
)

0 commit comments

Comments
 (0)