-
对于每个模块,license-banner-webpack-plugin会在每个捆绑文件的开头插入相应的许可证文本
资源介绍
许可证横幅webpack插件
在每个捆绑文件的开头插入用于每个捆绑文件的模块的许可证文本。
安装
$ yarn add license-banner-webpack-plugin --dev
# or
$ npm install license-banner-webpack-plugin --save-dev
用法
将插件模块导入到webpack配置中。
const LicenseBannerPlugin = require ( 'license-banner-webpack-plugin' ) ;
然后将此插件与一些选项一起使用。
new LicenseBannerPlugin ( {
licenseTemplate : function ( pkg ) {
return ` ${ pkg . name } , ${ pkg . version } , ${ pkg .