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
- Host: GitHub
- URL: https://github.com/cheft/gulp-coffee-react
- Owner: cheft
- Created: 2014-12-26T01:20:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-15T06:00:52.000Z (over 11 years ago)
- Last Synced: 2025-05-11T07:15:29.488Z (about 1 year ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/'))
});
```