Skip to content

Commit 049ca30

Browse files
authored
Merge pull request #79 from bgaeddert/update-dependencies
Update dependencies
2 parents 7b850b3 + 7973ee9 commit 049ca30

File tree

5 files changed

+4230
-2056
lines changed

5 files changed

+4230
-2056
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Changelog
2+
=========
3+
4+
1.2.3 - April 23, 2020
5+
----------------------
6+
7+
Fixed
8+
~~~~~
9+
10+
* Updated dependencies called out in npm audit. (bug fix) #78
11+
* Fixing 50 vulnerabilities (13 low, 12 moderate, 22 high, 3 critical)
12+
* Packages Updated:
13+
* browserify: 6.3.2 => 16.5.1
14+
* del: 0.1.3 => 5.1.0
15+
* glob: 4.0.6 => 7.1.6
16+
* gulp: 3.8.10 => 4.0.2
17+
* gulp-jshint: 1.9.0 => 2.1.0
18+
* gulp-mocha: 1.1.1 => 7.0.2
19+
* gulp-mocha-phantomjs: 0.8.1 => 0.12.2
20+
* mocha: 2.0.1 => 7.1.1
21+
* vinyl-buffer: 1.0.0 => 1.0.1
22+
* vinyl-source-stream: 1.0.0 => 2.0.0

gulpfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ gulp.task('test', function () {
7474
}));
7575
});
7676

77-
gulp.task('test-browser', ['browserify', 'browserify-tests'], function () {
77+
gulp.task('test-browser', gulp.series('browserify', 'browserify-tests', function () {
7878
return gulp.src('tests/tests.html')
7979
.pipe(mochaPhantomJS({
8080
reporter: process.env.reporter || 'spec',
8181
phantomjs: {
8282
useColors: true
8383
}
8484
}));
85-
});
85+
}));
8686

8787
gulp.task('test-integration', function () {
8888
var options = {'timeout': INTEGRATION_TEST_TIMEOUT};
@@ -91,10 +91,10 @@ gulp.task('test-integration', function () {
9191
.pipe(mocha(options));
9292
});
9393

94-
gulp.task('build', ['browserify']);
94+
gulp.task('build', gulp.series('browserify'));
9595

9696
gulp.task('watch', function() {
9797
gulp.watch(['index.js', 'tests/**/*.js'], ['lint', 'browserify']);
9898
});
9999

100-
gulp.task('default', ['lint', 'browserify', 'browserify-tests', 'test']);
100+
gulp.task('default', gulp.series('lint', 'browserify', 'browserify-tests', 'test'));

0 commit comments

Comments
 (0)