gulp-ngconcat
v0.0.3
Published
The gulp plugin of easy to use concatination for Angular based projects
Downloads
4
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