mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import * as os from 'os';
|
|
import * as webpack from 'webpack';
|
|
|
|
export default version => new webpack.BannerPlugin({
|
|
banner:
|
|
`Misskey v${version} | MIT Licensed, (c) syuilo 2014-2017\n` +
|
|
'https://github.com/syuilo/misskey\n' +
|
|
`built by ${os.hostname()} at ${new Date()}\n` +
|
|
'hash:[hash], chunkhash:[chunkhash]'
|
|
});
|