Skip to content

Latest commit

 

History

History
88 lines (67 loc) · 2.55 KB

CHANGELOG.md

File metadata and controls

88 lines (67 loc) · 2.55 KB

Gonzales changelog

29.12.2013, Version 2.0.2

  • Sass includes can have both arguments list and content block, i.e. @include nani() { color: tomato } is valid syntax.

18.11.2013, Version 2.0.1

  • Bring back lost whitespaces and comments

11.11.2013, Version 2.0.0

  • Support preprocessors: Sass (both SCSS and indented syntax), LESS.
  • New node types:
    • arguments (less and sass only)
    • commentML
    • commentSL (less and sass only)
    • condition (sass only)
    • default (sass only)
    • escapedString (less only)
    • include (less and sass only)
    • loop (sass only)
    • mixin (less and sass only)
    • parentselector (less and sass only)
    • placeholder (sass only)
    • propertyDelim
    • variable (less and sass only)
    • varialeList (less and sass only)
  • Rename methods:
    • srcToCSSP -> cssToAST
    • csspToSrc -> astToCSS
    • csspToTree -> astToTree
  • Pass all arguments as one object:
    • gonzales.cssToAST({css: a, syntax: b, rule: c, needInfo: d})
    • gonzales.astToCSS({ast: ast, syntax: syntax})
  • Remove built files from VCS
  • Move test command from make to npm
  • Build files before running tests
  • Divide tests into groups according to syntax
  • Add script to test one specific css string
  • Add token's index number to info object

11.02.2013, Version 1.0.7

  • Identifiers like _0 are identifiers now.
  • Throw error instead of console.error: css/csso#109

25.11.2012, Version 1.0.6

  • Typo fix (global variable leak): css/csso#110
  • Attribute selectors extended by |.
  • not(..) pseudo-class special support: css/csso#111

28.10.2012, Version 1.0.5

11.10.2012, Version 1.0.4

10.10.2012, Version 1.0.3

08.10.2012, Version 1.0.2

  • CSSO issue (filter + important breaks csso v1.3.1): css/csso#87

08.10.2012, Version 1.0.1

  • CSSO issue ("filter" IE property breaks CSSO v1.3.0): css/csso#86

03.10.2012, Version 1.0.0

  • First revision.