mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
| .. | ||
| transforms | ||
| .gitignore | ||
| package.json | ||
| README.md | ||
| run.js | ||
JSX Orphaned Brackets Transformer
React 0.13 no longer parses orphaned > and } as text.
Take this example block:
<div>
> }
</div>
In 0.12 and below, this would be transformed to the following:
React.DOM.div(null,
"> }",
)
In 0.13, this will instead throw a parser error.
Usage
The jsx_orphaned_brackets_transformer module ships an executable which transforms a file or directory of files. Files will be modified in place, so be sure you are prepared for that.
$ npm -g install jsx_orphaned_brackets_transformer
$ jsx_orphaned_brackets_transformer <path_to_file_or_files>