diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 00:10:01 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-06-07 00:10:01 +0900 |
| commit | 2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e (patch) | |
| tree | e0e04ae05fccd33ec9a44d997878e14c6c221a64 | |
| parent | Better log (diff) | |
| download | sharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.tar.gz sharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.tar.bz2 sharkey-2e3a8d4e367fbaf4ab91a474fe1c63e836e99a1e.zip | |
Better banner
| -rw-r--r-- | webpack/plugins/banner.ts | 7 |
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]' }); |