mirror of
https://github.com/unmojang/node-minecraft-protocol.git
synced 2025-09-30 06:30:39 -04:00
Fix dumb gulp issues
This commit is contained in:
parent
423305a19d
commit
8927b6032c
@ -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…
x
Reference in New Issue
Block a user