From 1fcc70fc0f9eff28cec7bb071af2cc2cf37e7ebe Mon Sep 17 00:00:00 2001 From: zhengqingxin <362965772@qq.com> Date: Wed, 29 Mar 2017 17:19:38 +0800 Subject: [PATCH] change const to let --- lib/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/application.js b/lib/application.js index 97a3b5bd..2b61e0cd 100644 --- a/lib/application.js +++ b/lib/application.js @@ -44,7 +44,7 @@ module.exports = class Application { * watcher callback */ _watcherCallBack(fileInfo){ - const transpiler = this.options.transpiler; + let transpiler = this.options.transpiler; if(transpiler){ if(!helper.isArray(transpiler)){ transpiler = [transpiler];