No need to use next

This commit is contained in:
Sébastien Chopin 2017-06-19 20:31:50 +02:00
parent 4f9684e117
commit b6d82a7c5b

View File

@ -1,4 +1,4 @@
module.exports = function (options, next) { module.exports = function (options) {
// Extend build // Extend build
this.extendBuild((config) => { this.extendBuild((config) => {
// Add TypeScript loader // Add TypeScript loader
@ -13,6 +13,4 @@ module.exports = function (options, next) {
} }
} }
}) })
next()
} }