Skip to content

Commit

Permalink
🔥 Remove outdated vendor-prefixed props (fixes #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
stormwarning committed Mar 22, 2018
1 parent 7e007cd commit 0f54655
Showing 1 changed file with 2 additions and 101 deletions.
103 changes: 2 additions & 101 deletions index.js
Expand Up @@ -20,8 +20,6 @@ module.exports = {
{
// Display mode.
properties: [
'-webkit-box-sizing',
'-moz-box-sizing',
'box-sizing',
'display',
],
Expand Down Expand Up @@ -126,15 +124,10 @@ module.exports = {
'-webkit-font-smoothing',
'-moz-osx-font-smoothing',
'font-smooth',
'-webkit-hyphens',
'-moz-hyphens',
'hyphens',
'line-height',
'color',
'text-align',
'-webkit-text-align-last',
'-moz-text-align-last',
'-ms-text-align-last',
'text-align-last',
'text-emphasis',
'text-emphasis-color',
Expand All @@ -154,14 +147,10 @@ module.exports = {
'-webkit-text-size-adjust',
'-ms-text-size-adjust',
'letter-spacing',
'-ms-word-break',
'word-break',
'word-spacing',
'-ms-word-wrap',
'word-wrap',
'word-wrap', // Legacy name for `overflow-wrap`
'overflow-wrap',
'-moz-tab-size',
'-o-tab-size',
'tab-size',
'white-space',
'vertical-align',
Expand Down Expand Up @@ -190,10 +179,6 @@ module.exports = {
'counter-reset',
'counter-increment',
'resize',
'-webkit-user-select',
'-moz-user-select',
'-ms-user-select',
'-o-user-select',
'user-select',
'nav-index',
'nav-up',
Expand All @@ -217,13 +202,8 @@ module.exports = {
'background-position',
'background-position-x',
'background-position-y',
'-webkit-background-clip',
'-moz-background-clip',
'background-clip',
'background-origin',
'-webkit-background-size',
'-moz-background-size',
'-o-background-size',
'background-size',
'background-blend-mode',
'isolation',
Expand Down Expand Up @@ -252,37 +232,17 @@ module.exports = {
'border-top-right-radius',
'border-bottom-right-radius',
'border-bottom-left-radius',
'-webkit-border-image',
'-moz-border-image',
'-o-border-image',
'border-image',
'-webkit-border-image-source',
'-moz-border-image-source',
'-o-border-image-source',
'border-image-source',
'-webkit-border-image-slice',
'-moz-border-image-slice',
'-o-border-image-slice',
'border-image-slice',
'-webkit-border-image-width',
'-moz-border-image-width',
'-o-border-image-width',
'border-image-width',
'-webkit-border-image-outset',
'-moz-border-image-outset',
'-o-border-image-outset',
'border-image-outset',
'-webkit-border-image-repeat',
'-moz-border-image-repeat',
'-o-border-image-repeat',
'border-image-repeat',
'outline',
'outline-width',
'outline-style',
'outline-color',
'outline-offset',
'-webkit-box-shadow',
'-moz-box-shadow',
'box-shadow',
'mix-blend-mode',
'filter:progid:DXImageTransform.Microsoft.Alpha(Opacity',
Expand Down Expand Up @@ -333,80 +293,21 @@ module.exports = {
{
// Transitions & Animation.
properties: [
'-webkit-transition',
'-moz-transition',
'-ms-transition',
'-o-transition',
'transition',
'-webkit-transition-delay',
'-moz-transition-delay',
'-ms-transition-delay',
'-o-transition-delay',
'transition-delay',
'-webkit-transition-timing-function',
'-moz-transition-timing-function',
'-ms-transition-timing-function',
'-o-transition-timing-function',
'transition-timing-function',
'-webkit-transition-duration',
'-moz-transition-duration',
'-ms-transition-duration',
'-o-transition-duration',
'transition-duration',
'-webkit-transition-property',
'-moz-transition-property',
'-ms-transition-property',
'-o-transition-property',
'transition-property',
'-webkit-transform',
'-moz-transform',
'-ms-transform',
'-o-transform',
'transform',
'-webkit-transform-origin',
'-moz-transform-origin',
'-ms-transform-origin',
'-o-transform-origin',
'transform-origin',
'-webkit-animation',
'-moz-animation',
'-ms-animation',
'-o-animation',
'animation',
'-webkit-animation-name',
'-moz-animation-name',
'-ms-animation-name',
'-o-animation-name',
'animation-name',
'-webkit-animation-duration',
'-moz-animation-duration',
'-ms-animation-duration',
'-o-animation-duration',
'animation-duration',
'-webkit-animation-play-state',
'-moz-animation-play-state',
'-ms-animation-play-state',
'-o-animation-play-state',
'animation-play-state',
'-webkit-animation-timing-function',
'-moz-animation-timing-function',
'-ms-animation-timing-function',
'-o-animation-timing-function',
'animation-timing-function',
'-webkit-animation-delay',
'-moz-animation-delay',
'-ms-animation-delay',
'-o-animation-delay',
'animation-delay',
'-webkit-animation-iteration-count',
'-moz-animation-iteration-count',
'-ms-animation-iteration-count',
'-o-animation-iteration-count',
'animation-iteration-count',
'-webkit-animation-direction',
'-moz-animation-direction',
'-ms-animation-direction',
'-o-animation-direction',
'animation-direction',
],
},
],
Expand Down

0 comments on commit 0f54655

Please sign in to comment.