Skip to content

Commit

Permalink
chore: update package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
straker committed Jan 13, 2019
1 parent 9c478a5 commit 2f743c7
Show file tree
Hide file tree
Showing 4 changed files with 1,682 additions and 2,752 deletions.
10 changes: 2 additions & 8 deletions gulpfile.js
Expand Up @@ -55,14 +55,8 @@ gulp.task('dist', function() {
.pipe(gulp.dest('./dist'));
});

gulp.task('connect', function() {
connect.server({
livereload: true
});
});

gulp.task('watch', function() {
gulp.watch('src/*.js', ['dist', 'scripts']);
gulp.watch('src/*.js', gulp.series('dist', 'scripts'));
});

gulp.task('test', function(done) {
Expand All @@ -79,4 +73,4 @@ gulp.task('test', function(done) {
}, done).start();
});

gulp.task('default', ['scripts', 'connect', 'watch']);
gulp.task('default', gulp.series('scripts', 'watch'));
3 changes: 2 additions & 1 deletion kontra.js
Expand Up @@ -780,7 +780,7 @@ kontra = {

/**
* Object pool. The pool will grow in size to accommodate as many objects as are needed.
* Unused items are at the front of the pool and in use items are at the of the pool.
* Unused items are at the front of the pool and in use items are at the end of the pool.
* @memberof kontra
*
* @param {object} properties - Properties of the pool.
Expand Down Expand Up @@ -916,6 +916,7 @@ kontra = {
};
};
})();

(function() {

/**
Expand Down

0 comments on commit 2f743c7

Please sign in to comment.