mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-29 18:55:40 -05:00
Fix dumb gulp issues
This commit is contained in:
parent
423305a19d
commit
8927b6032c
1 changed files with 3 additions and 3 deletions
|
@ -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']);
|
||||||
|
|
Loading…
Reference in a new issue