Fix dumb gulp issues

This commit is contained in:
Will Franzen 2015-02-22 10:45:15 -06:00
parent 423305a19d
commit 8927b6032c

View file

@ -7,13 +7,13 @@ var options = {
gulp.task('compile', function() { gulp.task('compile', function() {
gulp gulp
.src('lib/*.js') .src('src/*.js')
.pipe(babel(options)) .pipe(babel(options))
.pipe(gulp.dest('build/')); .pipe(gulp.dest('dist/'));
}); });
gulp.task('watch', function() { gulp.task('watch', function() {
gulp.watch('lib/*.js', ['compile']); gulp.watch('src/*.js', ['compile']);
}); });
gulp.task('default', ['compile']); gulp.task('default', ['compile']);