File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ # postcss-prefix change log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
+
5
+ ## 3.0.0
6
+ * Update to the postcss 8 plugin API.
7
+ * Require Node.js 8+.
Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ const css = `
11
11
.hello { color: black }
12
12
`
13
13
14
- const newCss = postcss ()
15
- .use (prefix (' #hello-world' ))
14
+ const newCss = postcss ([ prefix (' #hello-world' ) ])
16
15
.process (css)
17
16
.toString ()
18
17
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " postcss-prefix" ,
3
3
"description" : " Replace `:host` elements with a prefix of your choosing" ,
4
- "version" : " 2.2 .0" ,
4
+ "version" : " 3.0 .0" ,
5
5
"author" :
" Hugh Kennedy <[email protected] >" ,
6
6
"bugs" : " https://github.com/stackcss/postcss-prefix/issues" ,
7
7
"dependencies" : {
You can’t perform that action at this time.
0 commit comments