Skip to content

Commit

Permalink
update postcss to 8.4.19 (#1485)
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Nov 11, 2022
1 parent 1895e98 commit 4782f79
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -58,7 +58,7 @@
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nanospy": "^0.5.0",
"postcss": "^8.4.18",
"postcss": "^8.4.19",
"size-limit": "^8.1.0",
"uvu": "^0.5.6"
},
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion test/cases/example.out.css
@@ -1,6 +1,8 @@
::-moz-placeholder {
color: gray;
}::placeholder {
}

::placeholder {
color: gray;
}

Expand Down
4 changes: 3 additions & 1 deletion test/cases/file-selector-button.out.css
@@ -1,6 +1,8 @@
::-webkit-file-upload-button {
background: black
}::file-selector-button {
}

::file-selector-button {
background: black
}

Expand Down
3 changes: 2 additions & 1 deletion test/cases/fullscreen.out.css
@@ -1,5 +1,6 @@
:-webkit-full-screen {
background: black
}:fullscreen {
}
:fullscreen {
background: black
}
6 changes: 4 additions & 2 deletions test/cases/keyframes.out.css
Expand Up @@ -17,7 +17,8 @@
-webkit-transform: rotate(0);
transform: rotate(0)
}
}@-o-keyframes anim {
}
@-o-keyframes anim {
from {
top: calc(10% + 10px);
-o-transform: rotate(10deg);
Expand All @@ -32,7 +33,8 @@
-o-transform: rotate(0);
transform: rotate(0)
}
}@keyframes anim {
}
@keyframes anim {
from {
top: -webkit-calc(10% + 10px);
top: calc(10% + 10px);
Expand Down
3 changes: 2 additions & 1 deletion test/cases/placeholder-shown.out.css
@@ -1,5 +1,6 @@
:-ms-input-placeholder {
background: #eee
}:placeholder-shown {
}
:placeholder-shown {
background: #eee
}
15 changes: 10 additions & 5 deletions test/cases/placeholder.out.css
@@ -1,13 +1,18 @@
::-webkit-input-placeholder {
color: #999
}:-moz-placeholder {
}
:-moz-placeholder {
color: #999
}::-moz-placeholder {
}
::-moz-placeholder {
color: #999
}:-ms-input-placeholder {
}
:-ms-input-placeholder {
color: #999
}::-ms-input-placeholder {
}
::-ms-input-placeholder {
color: #999
}::placeholder {
}
::placeholder {
color: #999
}
3 changes: 2 additions & 1 deletion test/cases/viewport.out.css
@@ -1,5 +1,6 @@
@-ms-viewport {
width: device-width;
}@viewport {
}
@viewport {
width: device-width;
}

0 comments on commit 4782f79

Please sign in to comment.