Browse Source

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

dev
xudaashuai 6 years ago
committed by Evan You
parent
commit
f5b5b3c96f
  1. 4
      scripts/config.js

4
scripts/config.js

@ -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' +
' */'

Loading…
Cancel
Save