项目原始demo,不改动
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # 2.0.4
  2. * Now compiled with Babel 6.
  3. # 2.0.3
  4. * Fixes an issue where comments that were removed from selectors were replaced
  5. by a single space.
  6. # 2.0.2
  7. * Fixes an integration issue where comments inside values transformed by other
  8. processors had their values reset to their original state before the
  9. comments were removed.
  10. # 2.0.1
  11. * Replaces a dependency on node-balanced with internal comments parser.
  12. # 2.0.0
  13. * Upgraded to PostCSS 5 (thanks to @avanes).
  14. # 1.2.1
  15. * Improved performance by iterating the AST in a single pass.
  16. # 1.2.0
  17. * Adds support for user-directed removal of comments, with the `remove`
  18. option (thanks to @dmitrykiselyov).
  19. * `removeAllButFirst` now operates on each CSS tree, rather than the first one
  20. passed to the plugin.
  21. * Fixes to pass the PostCSS plugin guidelines.
  22. # 1.1.3
  23. * As PostCSS handles the source map content, there is no need to check for
  24. the existence of a '#' at position 0 of the comment. This patch fixes this
  25. behaviour.
  26. # 1.1.2
  27. * Fixes an issue where comment separated values were being incorrectly
  28. transformed to not have spaces separating them instead, in `decl.value`.
  29. e.g. `10px/*test*/20px` became `10px20px` in `decl.value` but not
  30. `decl._value.raw`.
  31. # 1.1.1
  32. * Fixes a bug where non-special comments, with an exclamation mark in any part
  33. of the text, were not being removed.
  34. # 1.1.0
  35. * Now uses the PostCSS `4.1` plugin API.
  36. * Adds support for transforming comments inside `!important` values.
  37. # 1.0.2
  38. * Adds a JSHint config, tidy up unnecessary lines of code.
  39. # 1.0.1
  40. * Fixed a bug which affected initializing the plugin with no options.
  41. * Stopped the plugin from trying to match comments in empty strings.
  42. # 1.0.0
  43. * Initial release.