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.

32 lines
1.1 KiB

7 years ago
  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  4. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  5. ## [1.1.1] - 2019-07-08
  6. ### Fixed
  7. - Fixed `rule.source === undefined` from `postcss-modules-values`.
  8. ## [1.1.0] - 2019-02-05
  9. ### Added
  10. - `landscape` (Boolean) Adds `@media (orientation: landscape)` with values converted via `landscapeWidth`.
  11. - `landscapeUnit` (String) Expected unit for `landscape` option
  12. - `landscapeWidth` (Number) Viewport width for landscape orientation.
  13. ### Fixed
  14. - `mediaQuery` option if `true` does not mutate its value now, but the rule inside it instead.
  15. ## [1.0.0] - 2019-01-28
  16. ### Added
  17. - `replace` option - (Boolean) replaces rules containing `vw` instead of adding fallbacks.
  18. - `propList` option - (Array) The properties that can change from `px` to `vw`.
  19. - `exclude` option - (Array or Regexp) Ignore some files like `node_modules`.
  20. ### Changed
  21. - zero values now remain unitless.
  22. - replace regexp is now case sensitive, so if you want to change `px`, then `pX` values won't be changed.