项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # 2.1.7
  2. * Replaced the `has-own` module with `has`.
  3. # 2.1.6
  4. * Fixes an issue where the module would discard at-rules that were defined in
  5. `@media` & `@supports` rules as well as the root. As this is legal to do in
  6. CSS, the module now checks to see if the candidate rule has the same parent
  7. as the cached rule. If it does, the rules are merged.
  8. # 2.1.5
  9. * Now compiled with babel 6.
  10. # 2.1.4
  11. * Fixed a range error which happened when duplicated at rules were found
  12. in the stylesheet.
  13. # 2.1.3
  14. * Fixed an infinite loop regression in the last patch.
  15. # 2.1.2
  16. * Fixes a bug where sometimes values would be substituted by JS code.
  17. # 2.1.1
  18. * Updates postcss-value-parser to version 3 (thanks to @TrySound).
  19. # 2.1.0
  20. * Replaced css-list with postcss-value-parser, reduced AST iterations from 4
  21. to 1 for increased performance.
  22. # 2.0.0
  23. * Upgraded to PostCSS 5.
  24. # 1.0.2
  25. * Minor boost in performance with reduced stringify passes.
  26. # 1.0.1
  27. * Fixes an issue where duplicated keyframes with the same name would cause
  28. an infinite loop.
  29. # 1.0.0
  30. * Initial release.