blob: 963290594890a2c3362a6cb2e449f9b4edd63056 (
plain)
1
2
3
4
5
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]`
});
|