summaryrefslogtreecommitdiff
path: root/webpack
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-06-07 00:10:01 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-06-07 00:10:01 +0900
commit2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e (patch)
treee0e04ae05fccd33ec9a44d997878e14c6c221a64 /webpack
parentBetter log (diff)
downloadsharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.tar.gz
sharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.tar.bz2
sharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.zip
Better banner
Diffstat (limited to 'webpack')
-rw-r--r--webpack/plugins/banner.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/webpack/plugins/banner.ts b/webpack/plugins/banner.ts
index 9632905948..83c1353d62 100644
--- a/webpack/plugins/banner.ts
+++ b/webpack/plugins/banner.ts
@@ -1,6 +1,9 @@
import * as webpack from 'webpack';
export default version => new webpack.BannerPlugin({
- banner: `Misskey v${version} - built at ${new Date()} | (c) syuilo 2014-2017
- hash:[hash], chunkhash:[chunkhash], name:[name], filebase:[filebase], query:[query], file:[file]`
+ banner:
+ `Misskey v${version} | MIT Licensed, (c) syuilo 2014-2017\n` +
+ 'https://github.com/syuilo/misskey\n' +
+ `built at ${new Date()}\n` +
+ 'hash:[hash], chunkhash:[chunkhash]'
});