UNPKG

express-auth-negotiate

Version:

Express middleware to handle negotiate authentication

15 lines (13 loc) 354 B
'use strict'; import config from '../config'; import babel from 'gulp-babel'; import sourcemaps from 'gulp-sourcemaps'; export default gulp => { gulp.task('babel', () => { return gulp.src(config.paths.src) .pipe(sourcemaps.init()) .pipe(babel()) .pipe(sourcemaps.write('.')) .pipe(gulp.dest('lib')); }); };