You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.6 KiB

4 years ago
  1. # 4.0.0-rc.0
  2. * Breaking: Drops support for Node 0.12, we now require at least Node 4.
  3. * Breaking: Update PostCSS to 6.0.0.
  4. # 2.1.0
  5. * Now supports discarding duplicates irrespective of property order, better
  6. support for legacy hacks & partial duplicate removal (thanks to @andyjansson).
  7. # 2.0.2
  8. * Major performance boost by lessening algorithmic complexity; each node is
  9. now cached and the nested loop removed, meaning that each node is cast to a
  10. string only once (thanks to @asztal).
  11. # 2.0.1
  12. * Now compiled with babel 6.
  13. * Minor performance boost from exiting from the `dedupe` function if the node
  14. has less than two child nodes.
  15. # 2.0.0
  16. * Upgraded to PostCSS 5.
  17. # 1.2.1
  18. * Fixes an integration test failure with cssnano; use PostCSS `each` rather
  19. than native `forEach` (thanks to @TrySound).
  20. # 1.2.0
  21. * Improved duplicate detection (thanks to @TrySound).
  22. # 1.1.6
  23. * Improved performance by caching string representations of nodes, and
  24. minimising stringifying as much as possible (thanks to @TrySound).
  25. # 1.1.5
  26. * Fixed an issue where comments were being deduplicated.
  27. # 1.1.4
  28. * Improved performance by making all AST iterations in a single pass.
  29. # 1.1.3
  30. * Improved documentation for compatibility with the plugin guidelines.
  31. * Simplify main source code.
  32. # 1.1.2
  33. * Fixed an issue where declarations inside similar keyframes were being
  34. discarded incorrectly.
  35. # 1.1.1
  36. * Fixed a bug where keyframe rules were being incorrectly discarded, if they had
  37. the same declarations but different vendor prefixes.
  38. # 1.1.0
  39. * Now uses the PostCSS `4.1` plugin API.
  40. # 1.0.0
  41. * Initial release.