summaryrefslogtreecommitdiff
path: root/webpack/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'webpack/plugins')
-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]'
});