Add banner into built script files

This commit is contained in:
syuilo
2017-05-25 13:54:31 +09:00
parent 3ed3da8bf4
commit 24c68e7a66
3 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,6 @@
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]`
});