An open API service indexing awesome lists of open source software.

https://github.com/cheft/gulp-coffee-react

Compile CoffeeScript & React files
https://github.com/cheft/gulp-coffee-react

Last synced: about 1 year ago
JSON representation

Compile CoffeeScript & React files

Awesome Lists containing this project

README

          

## Information


Packagegulp-coffee-react

Description
Compiles CoffeeScript & React

Node Version
>= 0.9

## Usage

```javascript
var coffeex = require('gulp-coffee-react');

gulp.task('coffeex', function() {
gulp.src('./src/*.coffee')
.pipe(coffeex({bare: true}).on('error', gutil.log))
.pipe(gulp.dest('./public/'))
});
```