From fadc20a43743af2409e698f4818dcdfccb159b36 Mon Sep 17 00:00:00 2001 From: xudaashuai Date: Thu, 25 Oct 2018 00:48:58 +0800 Subject: [PATCH] chore: use template strings in config.js (#8113) --- scripts/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/config.js b/scripts/config.js index 1432ecd1fbb..730ddc2aacb 100644 --- a/scripts/config.js +++ b/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' + ' */'