gulp-ngconcat

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

Usage no npm install needed!

<script type="module">
  import gulpNgconcat from 'https://cdn.skypack.dev/gulp-ngconcat';
</script>

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