AngularJS Annotation - zhentian-wan/MEANAppsFiles GitHub Wiki

Install

npm install gulp-ng-annotate --save-dev

Using

ngAnnotate = require('gulp-ng-annotate');

gulp.task('js-public', function() {
    return gulp.src('./public/app/**/*.js')
        .pipe(plumber())
        .pipe(ngAnnotate())
        .pipe(uglify())
        .pipe(gulp.dest('./build/public/app'));
});