yumechi-no-kuni/webpack/plugins/banner.ts

11 lines
326 B
TypeScript
Raw Normal View History

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