From 8927b6032cd4386b4d9f7842a6f6e796ace0d40b Mon Sep 17 00:00:00 2001 From: Will Franzen Date: Sun, 22 Feb 2015 10:45:15 -0600 Subject: [PATCH] Fix dumb gulp issues --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 7ca87ef..05fe358 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -7,13 +7,13 @@ var options = { gulp.task('compile', function() { gulp - .src('lib/*.js') + .src('src/*.js') .pipe(babel(options)) - .pipe(gulp.dest('build/')); + .pipe(gulp.dest('dist/')); }); gulp.task('watch', function() { - gulp.watch('lib/*.js', ['compile']); + gulp.watch('src/*.js', ['compile']); }); gulp.task('default', ['compile']);