chore: use template strings in config.js (#8113)

This commit is contained in:
xudaashuai 2018-10-25 00:48:58 +08:00 committed by Evan You
parent ecc239e475
commit f5b5b3c96f
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ const weexVersion = process.env.WEEX_VERSION || require('../packages/weex-vue-fr
const banner =
'/*!\n' +
' * Vue.js v' + version + '\n' +
' * (c) 2014-' + new Date().getFullYear() + ' Evan You\n' +
` * Vue.js v${version}\n` +
` * (c) 2014-${new Date().getFullYear()} Evan You\n` +
' * Released under the MIT License.\n' +
' */'