1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-01 23:42:10 -06:00
paricafe/webpack/plugins/banner.ts
2017-05-25 13:54:31 +09:00

6 lines
272 B
TypeScript

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]`
});