Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.41 KB

File metadata and controls

46 lines (30 loc) · 1.41 KB

0.3.0 / 2015-01-27

  • Changed license back to MIT, now that React is licensed under BSD.

  • Merged in changes since JSX Transformer 0.10.0 up to the current release version, 0.12.2:

    • The /* @jsx m */ pragma is no longer needed - Mithril's m() function is assumed to be in scope.
    • More ES6 transforms are supported when using the harmony flag.
    • JSX Spread Attributes allow you to merge objects into a tag's attrs, but with MSX you must ensure Object.assign() is available in order to use them.
    • More HTML and SVG tag names are supported.
    • Inline sourcemaps can be generated by passing a sourceMap: true option (or --source-map-inline flag on the command line).

0.2.1 / 2015-01-26

  • Added a no-precompile option to the msx command.

  • Added a precompile option, defaulting to true.

0.2.0 / 2015-01-24

  • Known tag names are now precompiled to tag objects [liamcurry]
    • Unknown tag names will continue to generate m() calls

0.1.3 / 2014-03-26

  • Added msx command when installed globally

0.1.2 / 2014-03-21

  • Changed tag name string to use double quotes for consistency with other text content output

0.1.1 / 2014-03-21

  • Changed to Apache 2.0 License, as per React

0.1.0 / 2014-03-21

  • Initial release