Skip to content

Commit c278fb8

Browse files
committed
update a few dependencies so that the builds succeed
The old dependencies no longer build on newer versions of node. This commit changes nothing but those dependencies and a small change to the gulp script to work with gulp 4+.
1 parent f520543 commit c278fb8

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

gulpfile.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ gulp.task('clean', () => {
3131
.pipe(rimraf())
3232
})
3333

34-
gulp.task('default', ['transpile', 'assets'])
34+
gulp.task('default', gulp.series('transpile', 'assets'));

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515
},
1616
"dependencies": {
1717
"args": "1.3.0",
18-
"babel-core": "6.3.26",
18+
"babel-core": "^6.26.3",
1919
"babel-eslint": "6.0.4",
2020
"babel-polyfill": "6.3.14",
2121
"babel-preset-es2015": "6.3.13",
2222
"babel-register": "6.9.0",
23-
"body-parser": "1.10.2",
23+
"body-parser": "^1.19.0",
2424
"cors": "2.7.1",
2525
"debug": "3.0.1",
2626
"email-regex": "1.0.0",
27-
"express": "4.15.4",
27+
"express": "^4.17.1",
28+
"gulp": "4.0.2",
2829
"gulp-babel": "6.1.1",
2930
"gulp-rimraf": "0.2.0",
30-
"gulp": "3.9.0",
3131
"hostenv": "1.0.1",
3232
"opentype.js": "0.4.4",
3333
"socket.io": "2.0.3",
@@ -38,7 +38,7 @@
3838
"devDependencies": {
3939
"eslint": "2.12.0",
4040
"eslint-config-default": "0.2.0",
41-
"mocha": "2.2.4",
41+
"mocha": "9.1.3",
4242
"nock": "2.17.0",
4343
"supertest": "0.15.0"
4444
},

0 commit comments

Comments
 (0)