-
rollup-plugin-license能够将许可证信息整合至最终的打包文件中,并对外展示第三方许可证
资源介绍
汇总插件许可证
汇总插件可用于:
从文件中添加横幅。
创建一个包含包中使用的所有第三方的文件(并显示每个依赖项的许可证)。
如何使用
使用 NPM 安装插件:
npm install --save-dev rollup-plugin-license
然后将其添加到您的汇总配置中:
const path = require ( 'path' ) ;
const license = require ( 'rollup-plugin-license' ) ;
module . exports = {
plugins : [
license ( {
sourcemap : true ,
cwd : '.' , // Default is process.cwd()
banner : {
commentStyle : 'r