gulp-ngconcat
v0.0.3
Published
The gulp plugin of easy to use concatination for Angular based projects
Readme
NGCONCAT
NGCONCAT is lightweight tool to concat your Angular.js application in one file.
Other plugins
Grunt
Development
NgConcat
Install
npm install gulp-ngconcatAPI
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
