From b6d82a7c5b9655b31fa343dfcc3d036eb590ad9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Mon, 19 Jun 2017 20:31:50 +0200 Subject: [PATCH] No need to use next --- examples/typescript/modules/typescript.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/typescript/modules/typescript.js b/examples/typescript/modules/typescript.js index efa5413d97..ec98f8fd26 100644 --- a/examples/typescript/modules/typescript.js +++ b/examples/typescript/modules/typescript.js @@ -1,4 +1,4 @@ -module.exports = function (options, next) { +module.exports = function (options) { // Extend build this.extendBuild((config) => { // Add TypeScript loader @@ -13,6 +13,4 @@ module.exports = function (options, next) { } } }) - - next() }