作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经安装了html2canvas在我的 Angular 库项目中,当我在生产模式下编译时(运行 ng build --prod
命令),我收到以下错误:
ERROR: Dependency @types/html2canvas must be explicitly allowed usingthe "allowedNonPeerDependencies" option.
最佳答案
您可以将库添加到您的 peerDependencies在 package.json
.我强烈推荐使用 peerDependencies策略因为明确地向其他人公开您的库依赖于其他库:
{
...
"scripts": {...},
"peerDependencies": {
...
"@types/html2canvas": "0.0.36",
...
},
}
或者您可以使用 ng-package.json 上的选项:
{
...
"lib": {
"entryFile": "src/public-api.ts"
},
"allowedNonPeerDependencies": [
"@type/html2canvas"
]
...
}
关于javascript - 错误 : Dependency @types/html2canvas must be explicitly allowed using the "allowedNonPeerDependencies" option,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66574531/
我已经安装了html2canvas在我的 Angular 库项目中,当我在生产模式下编译时(运行 ng build --prod 命令),我收到以下错误: ERROR: Dependency @typ
我是一名优秀的程序员,十分优秀!