Skip to content

Latest commit

 

History

History
85 lines (52 loc) · 2.75 KB

CHANGELOG.md

File metadata and controls

85 lines (52 loc) · 2.75 KB

Changelog

5.0.2

Patch Changes

5.0.1 - 2021-07-08

  • Fix options. [#270]

5.0.0 - 2021-07-07

  • Migrate plugin for postcss 8 api and remove unused features. [#267]

4.1.0 - 2021-04-16

  • Update cssnano to version 5.0.0. [#233]

4.0.0 - 2021-04-16

  • Updating to postcss 8 (which drops support for node 11/13 but no major api changes). [#225]

3.1.0 - 2020-09-17

  • Dependency updates. [#159]

3.0.0 - 2020-03-28

🚨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',
  },
};

2.2.1 - 2019-01-17

  • Removed a potentially buggy transform from the minimize-based preset

2.2.0 - 2018-11-26

  • Added the minimize option to optionally enable cssnano.

2.1.0 - 2018-11-22

  • Updated to the latest version of all dependencies.

2.0.0 - 2018-08-30

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)

1.0.1 - 2018-01-17

  • Discard comments in the last processing step, allowing to use comments such as /* autoprefixer: off */. [#2]

1.0.0 - 2017-03-05

  • Initial release