Skip to content

Commit 4782f79

Browse files
authored
update postcss to 8.4.19 (#1485)
1 parent 1895e98 commit 4782f79

File tree

9 files changed

+31
-17
lines changed

9 files changed

+31
-17
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"eslint-plugin-prefer-let": "^3.0.1",
5959
"eslint-plugin-promise": "^6.1.1",
6060
"nanospy": "^0.5.0",
61-
"postcss": "^8.4.18",
61+
"postcss": "^8.4.19",
6262
"size-limit": "^8.1.0",
6363
"uvu": "^0.5.6"
6464
},

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/cases/example.out.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
::-moz-placeholder {
22
color: gray;
3-
}::placeholder {
3+
}
4+
5+
::placeholder {
46
color: gray;
57
}
68

test/cases/file-selector-button.out.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
::-webkit-file-upload-button {
22
background: black
3-
}::file-selector-button {
3+
}
4+
5+
::file-selector-button {
46
background: black
57
}
68

test/cases/fullscreen.out.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
:-webkit-full-screen {
22
background: black
3-
}:fullscreen {
3+
}
4+
:fullscreen {
45
background: black
56
}

test/cases/keyframes.out.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
-webkit-transform: rotate(0);
1818
transform: rotate(0)
1919
}
20-
}@-o-keyframes anim {
20+
}
21+
@-o-keyframes anim {
2122
from {
2223
top: calc(10% + 10px);
2324
-o-transform: rotate(10deg);
@@ -32,7 +33,8 @@
3233
-o-transform: rotate(0);
3334
transform: rotate(0)
3435
}
35-
}@keyframes anim {
36+
}
37+
@keyframes anim {
3638
from {
3739
top: -webkit-calc(10% + 10px);
3840
top: calc(10% + 10px);
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
:-ms-input-placeholder {
22
background: #eee
3-
}:placeholder-shown {
3+
}
4+
:placeholder-shown {
45
background: #eee
56
}

test/cases/placeholder.out.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
::-webkit-input-placeholder {
22
color: #999
3-
}:-moz-placeholder {
3+
}
4+
:-moz-placeholder {
45
color: #999
5-
}::-moz-placeholder {
6+
}
7+
::-moz-placeholder {
68
color: #999
7-
}:-ms-input-placeholder {
9+
}
10+
:-ms-input-placeholder {
811
color: #999
9-
}::-ms-input-placeholder {
12+
}
13+
::-ms-input-placeholder {
1014
color: #999
11-
}::placeholder {
15+
}
16+
::placeholder {
1217
color: #999
1318
}

test/cases/viewport.out.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@-ms-viewport {
22
width: device-width;
3-
}@viewport {
3+
}
4+
@viewport {
45
width: device-width;
56
}

0 commit comments

Comments
 (0)