Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-ngconcat

galkinrost6MIT0.0.3

The gulp plugin of easy to use concatination for Angular based projects

gulp, concat, angular

readme

NGCONCAT

NGCONCAT is lightweight tool to concat your Angular.js application in one file.

Other plugins

Grunt

Development

NgConcat

Install

npm install gulp-ngconcat

API

var gulp=require('gulp');
var concat=require('gulp-ngconcat');

gulp.task('concat',function(){
    gulp.src('/**/*.js')
        .pipe(concat('app.js'))
        .pipe(gulp.dest('./build/'));
});

gulp.task('watch',function(){
    gulp.watch('/**/*.js',['concat']);
});

License

MIT