diff options
Diffstat (limited to 'webpack/plugins/banner.ts')
| -rw-r--r-- | webpack/plugins/banner.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack/plugins/banner.ts b/webpack/plugins/banner.ts index 47b8cd3555..a8774e0a39 100644 --- a/webpack/plugins/banner.ts +++ b/webpack/plugins/banner.ts @@ -3,7 +3,7 @@ import * as webpack from 'webpack'; export default version => new webpack.BannerPlugin({ banner: - `Misskey v${version} | MIT Licensed, (c) syuilo 2014-2017\n` + + `Misskey v${version} | MIT Licensed, (c) syuilo 2014-2018\n` + 'https://github.com/syuilo/misskey\n' + `built by ${os.hostname()} at ${new Date()}\n` + 'hash:[hash], chunkhash:[chunkhash]' |