- Fix options. [#270]
- Migrate plugin for postcss 8 api and remove unused features. [#267]
- Update
cssnano
to version5.0.0
. [#233]
- Updating to postcss 8 (which drops support for node 11/13 but no major api changes). [#225]
- Dependency updates. [#159]
🚨Package rename
This package has been renamed from postcss-shopify
to @shopify/postcss-plugin.
. Update any configuration to use this new name
Before:
module.exports = {
plugins: {
'postcss-shopify',
},
};
After:
module.exports = {
plugins: {
'@shopify/postcss-plugin',
},
};
- Removed a potentially buggy transform from the
minimize
-based preset
- Added the
minimize
option to optionally enablecssnano
.
- Updated to the latest version of all dependencies.
Breaking change: updated dependencies to use PostCSS 7.0.
- Updated autoprefixer:
^6.7.6
->9.1.3
(changelog) - Updated postcss:
^5.2.15
->7.0.2
(changelog) - Updated postcss-calc":
^5.3.1
->^6.0.1
(changelog) - Updated postcss-flexbugs-fixes:
^2.1.0
->4.1.0
(changelog) - Updated postcss-discard-comments:
^2.0.4
->4.0.0
(changelog) - Updated postcss-selector-matches:
^2.0.5
->^3.0.1
(changelog) - Updated postcss-will-change:
^1.1.0
->^2.0.0
(changelog)
- Discard comments in the last processing step, allowing to use comments such as
/* autoprefixer: off */
. [#2]
- Initial release