Skip to content

artem328/gulp-coffeescript-concat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Gulp plugin based on coffeescript-concat

Resources

License

Stars

Watchers

Forks

Packages

No packages published