gulp-coffee icon indicating copy to clipboard operation
gulp-coffee copied to clipboard

Coffeescript plugin for gulp

Results 6 gulp-coffee issues
Sort by recently updated
recently updated
newest added

Hi, I had added ppc64le(Linux on Power) support on travis-ci in the branch and looks like its been successfully added. I believe it is ready for the final review and...

Please include configuration examples to README.md

Fixes #91 The lib vinyl-sourcemaps-apply will throw an error if the sourceMap file property is not set. [They seem unwilling to remove the assertion](https://github.com/gulp-sourcemaps/gulp-sourcemaps/issues/83) that checks for the file property....

``` coffee coffeeStream = coffee().on('error', (error) -> {filename} = error extension = path.extname(error.filename) dirname = path.dirname(filename) basename = path.basename(error.filename, '.coffee') target = path.join(dirname, "#{basename}.js") ) gulp.task("coffee", () -> return gulp.src(dedupeGlobs(paths.coffee))...

I would like to write an error handler that writes a small JS file when gulp-coffee fails. For example if `a.coffee` has a syntax error, I want to create `a.js`...