build-tag-webpack-plugin
v0.1.3
Published
print webpack build version info on console. 在控制台打印webpack打包版本信息的webpack插件
Downloads
3
Maintainers
Readme
简介
控制台打印webpack打包信息的webpack插件
插件使用效果
使用
webpack.config.js
const BuildTagWebpackPlugin = require('build-tag-webpack-plugin')
module.exports = {
entry: 'index.js',
output: {
path: __dirname + '/dist',
filename: 'index_bundle.js'
},
plugins: [
new BuildTagWebpackPlugin({
// version: '1.0.0', // 打印版本可选,不填自动读取package.json的版本
// banner: string | Function, // 插入入口文件的信息
})
]
}