1.1.0 • Published 11 years ago
mimosa-cjsx v1.1.0
mimosa-cjsx
Overview
This is a Coffeescript + React/JSX compiler for the Mimosa build tool. It will precompile your .cjsx files using coffee-react
Usage
Add 'cjsx' to your list of modules. That's all! Mimosa will install the module for you when you start mimosa watch or mimosa build.
Functionality
This module will compile your Coffeescript + React/JSX files.
Default Config
cjsx: {
lib: undefined,
extensions: ["cjsx"]
}lib: You may want to use this module but may not be ready to use the latest version of thecoffee-react. Using thelibproperty you can provide a specific version ofcoffee-reactif the one being used by this module isn't to your liking. To provide a specific version, you must have itnpm installed into your project and then provide it tolib. For instance:lib: require("coffee-react")extensions: an array of strings, the extensions of your Coffeescript React/JSX files.