Package Exports
- grunt-react
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (grunt-react) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
grunt-react
Grunt task for compiling Facebook React's .jsx templates into .js
Getting Started
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-react --save-devOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-react');The "react" task
Overview
In your project's Gruntfile, add a section named react to the data object passed into grunt.initConfig().
grunt.initConfig({
react: {
app: {
options: {
extension: 'js' // Default
},
files: {
'path/to/output/dir': 'path/to/jsx/templates/dir'
}
},
},
})Options
options.extension
Type: String
Default value: js
Extension of files to search for JSX-syntax & convert to JS.
Usage Examples
Recommended Options
I recommend naming your React Components with the .jsx extension:
/**
* @jsx React.DOM
*/
var MyComponent = React.createClass({
...
render: function() {
return (
<p>Howdy</p>
);
}
});Then, set your Gruntfile to use:
grunt.initConfig({
react: {
options: {
extension: 'jsx'
},
app: {
files: {
'path/to/output/dir': 'path/to/jsx/templates/dir'
}
}
},
})This will output the following:
/**
* @jsx React.DOM
*/
var MyComponent = React.createClass({displayName: 'MyComponent',
render: function() {
return (
React.DOM.p(null, "Howdy")
);
}
});Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
v0.1.0
- Initial release