From 4c69a540ca06c338058c40fade5c6e738b6564d8 Mon Sep 17 00:00:00 2001 From: xsbchen Date: Mon, 6 Feb 2017 15:00:12 +0800 Subject: [PATCH] fix eslint error in gen-single-config.js --- build/gen-single-config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/gen-single-config.js b/build/gen-single-config.js index 5c0f3e81f..e30be94fc 100644 --- a/build/gen-single-config.js +++ b/build/gen-single-config.js @@ -1,7 +1,7 @@ var path = require('path'); var config = require('./config'); -module.exports = function (context, moduleName, entry) { +module.exports = function(context, moduleName, entry) { return { entry: { index: path.resolve(context, entry || 'index.js') @@ -13,5 +13,5 @@ module.exports = function (context, moduleName, entry) { extends: ['vue2'], alias: config.alias, externals: { vue: config.vue } - } -} + }; +};