-
-
Notifications
You must be signed in to change notification settings - Fork 188
Use PostCSS 6 and update all plugins #384
Changes from all commits
b0db778
5b95330
e1c444a
e48261b
9ba1169
e29c53c
a8077cf
7f45425
e0f3e62
bd5571f
b952973
702a92d
c36b858
1cc3d5d
2221d70
2a26ea4
21c8db9
bf9ff4b
68e759f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ node_js: | |
- '6' | ||
- '5' | ||
- '4' | ||
- '0.12' | ||
|
||
script: | ||
- npm run test | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,34 +21,33 @@ | |
"!**/__tests__" | ||
], | ||
"dependencies": { | ||
"autoprefixer": "^6.0.2", | ||
"caniuse-api": "^1.5.3", | ||
"autoprefixer": "^7.1.0", | ||
"caniuse-api": "^2.0.0", | ||
"chalk": "^1.1.1", | ||
"pleeease-filters": "^3.0.0", | ||
"postcss": "^5.0.4", | ||
"postcss-apply": "^0.3.0", | ||
"postcss-attribute-case-insensitive": "^1.0.1", | ||
"postcss-calc": "^5.0.0", | ||
"postcss-color-function": "^2.0.0", | ||
"postcss-color-gray": "^3.0.0", | ||
"postcss-color-hex-alpha": "^2.0.0", | ||
"pleeease-filters": "^4.0.0", | ||
"postcss": "^6.0.1", | ||
"postcss-attribute-case-insensitive": "^2.0.0", | ||
"postcss-calc": "^6.0.0", | ||
"postcss-color-function": "^4.0.0", | ||
"postcss-color-gray": "^4.0.0", | ||
"postcss-color-hex-alpha": "^3.0.0", | ||
"postcss-color-hsl": "^1.0.5", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^2.0.0 |
||
"postcss-color-hwb": "^2.0.0", | ||
"postcss-color-rebeccapurple": "^2.0.0", | ||
"postcss-color-hwb": "^3.0.0", | ||
"postcss-color-rebeccapurple": "^3.0.0", | ||
"postcss-color-rgb": "^1.1.4", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^2.0.0 |
||
"postcss-custom-media": "^5.0.0", | ||
"postcss-custom-properties": "^5.0.0", | ||
"postcss-custom-selectors": "^3.0.0", | ||
"postcss-font-family-system-ui": "^1.0.1", | ||
"postcss-font-variant": "^2.0.0", | ||
"postcss-custom-media": "^6.0.0", | ||
"postcss-custom-properties": "^6.0.1", | ||
"postcss-custom-selectors": "^4.0.1", | ||
"postcss-font-family-system-ui": "^2.0.1", | ||
"postcss-font-variant": "^3.0.0", | ||
"postcss-image-set-polyfill": "^0.3.3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^0.3.5 |
||
"postcss-initial": "^1.3.1", | ||
"postcss-media-minmax": "^2.1.0", | ||
"postcss-nesting": "^2.0.5", | ||
"postcss-pseudo-class-any-link": "^1.0.0", | ||
"postcss-initial": "^2.0.0", | ||
"postcss-media-minmax": "^3.0.0", | ||
"postcss-nesting": "^3.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The most recent version of postcss-nesting is 4.0.1 |
||
"postcss-pseudo-class-any-link": "^4.0.0", | ||
"postcss-replace-overflow-wrap": "^1.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^2.0.0 |
||
"postcss-selector-matches": "^2.0.0", | ||
"postcss-selector-not": "^2.0.0" | ||
"postcss-selector-matches": "^3.0.1", | ||
"postcss-selector-not": "^3.0.1" | ||
}, | ||
"peerDependencies": { | ||
"caniuse-db": "^1.0.30000652" | ||
|
@@ -95,8 +94,9 @@ | |
"npmpub": "^3.1.0", | ||
"object-assign": "^3.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since PostCSS 6 requires There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a devDep, so doesn't really need done, but it definitely could be done. |
||
"opn": "^1.0.2", | ||
"postcss-apply": "^0.7.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can be bumbed to ^0.8.0 |
||
"postcss-browser-reporter": "^0.4.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing PostCSS v6 support |
||
"postcss-import": "^7.1.3", | ||
"postcss-import": "^10.0.0", | ||
"postcss-loader": "^0.8.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bump to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^2.0.5 |
||
"postcss-reporter": "^1.3.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^4.0.0 |
||
"postcss-url": "^5.0.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PostCSS v6 support with ^7.0.0 |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
body { | ||
background: rgb(102, 51, 153) | ||
background: #639 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
.image { | ||
background-image: url(img/test.png); | ||
}@media (min-resolution: 144dpi) {.image { | ||
background-image: url(img/test-2x.png); | ||
} | ||
@media (min-resolution: 144dpi) { | ||
.image { | ||
background-image: url(img/test-2x.png); | ||
} | ||
}@media (min-resolution: 600dpi) {.image { | ||
background-image: url(my-img-print.png); | ||
} | ||
@media (min-resolution: 600dpi) { | ||
.image { | ||
background-image: url(my-img-print.png); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
.button { | ||
} | ||
|
||
.button i { | ||
|
||
.button i{ | ||
color: black | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#375 ?