Sharkey/webpack/plugins/banner.ts

11 lines
326 B
TypeScript
Raw Normal View History

2017-06-06 20:22:03 +03:00
import * as os from 'os';
2017-05-25 07:54:31 +03:00
import * as webpack from 'webpack';
export default version => new webpack.BannerPlugin({
2017-06-06 18:10:01 +03:00
banner:
2017-12-31 17:02:58 +02:00
`Misskey v${version} | MIT Licensed, (c) syuilo 2014-2018\n` +
2017-06-06 18:10:01 +03:00
'https://github.com/syuilo/misskey\n' +
2017-06-06 20:22:03 +03:00
`built by ${os.hostname()} at ${new Date()}\n` +
2017-06-06 18:10:01 +03:00
'hash:[hash], chunkhash:[chunkhash]'
2017-05-25 07:54:31 +03:00
});