0.1.3 • Published 8 years ago

gulp-coffeescript-concat v0.1.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-coffeescript-concat

Overview

Gulp plugin based on coffeescript-concat

Installation

Install package with NPM and add it to your development dependencies:

npm install --save-dev gulp-coffeescript-concat

Usage

var coffeeConcat = require('gulp-coffeescript-concat');

gulp.task('coffee', function() {
    return gulp.src(['coffee/*.coffee', 'coffee/**/*.coffee'])
        .pipe(coffeeConcat('all.coffee'))
        .pipe(gulp.dest('dist'));
});

This will concat coffeescript files in right order for resolving class dependencies. For more information about dependency resolving you can get at coffeescript-concat page.

Licence

MIT, see LICENCE file