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 } - } -} + }; +};