Skip to content

0.2

Compare
Choose a tag to compare
@Daniel15 Daniel15 released this 26 Feb 05:51
· 992 commits to main since this release
  • Precompilation of JSX files via MSBuild
  • Partial Linux (Mono) support.
    Server-side component rendering is supported, but JSX compilation is not yet
    supported. To use JSX on Mono, you will need to precompile your JSX files
    via MSBuild.
  • Cassette MSBuild support - Bundle and minify your JavaScript before
    deployment to improve performance

Internal technical changes:

  • React core no longer depends on System.Web, for easier use outside of an
    ASP.NET context (eg. in a command-line or OWIN application)
  • JSX transformation split from IReactEnvironment into new IJsxTransformer
    interface. The previous IReactEnvironment.LoadJsxFile and
    IReactEnvironment.TransformJsx methods have been marked as obsolete, please
    use IReactEnvironment.JsxTransformer.TransformJsxFile instead.