This commit is contained in:
Brittany Chiang
2017-03-14 23:50:30 -04:00
parent 7e16ccdb46
commit 6cf1122d8e
6 changed files with 82 additions and 11 deletions

21
build/scripts.js Normal file
View File

@@ -0,0 +1,21 @@
const jshint = require('gulp-jshint');
const babel = require('gulp-babel');
const uglify = require('gulp-uglify');
const jsPath = '_scripts/*.js';
const destPath = '_site/js';
module.exports = gulp => {
gulp.task('scripts', () => {
return gulp.src( jsPath )
.pipe(jshint())
.pipe(babel({
presets: ['es2015']
}))
.pipe(uglify())
.pipe(gulp.dest( destPath ))
.pipe(gulp.dest( 'js' ));
});
}