Skip to content

Commit

Permalink
fix eslint error in gen-single-config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
xsbchen authored and Leopoldthecoder committed Feb 7, 2017
1 parent 1b4a0f9 commit 4c69a54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/gen-single-config.js
Original file line number Diff line number Diff line change
@@ -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')
Expand All @@ -13,5 +13,5 @@ module.exports = function (context, moduleName, entry) {
extends: ['vue2'],
alias: config.alias,
externals: { vue: config.vue }
}
}
};
};

0 comments on commit 4c69a54

Please sign in to comment.