如何忽略正在安装的依赖于其他 Bower 组件的特定 Bower 组件

How to ignore a particular bower component being installed which is dependent on other bower component

我正在尝试安装 ng-quill,它以 quill 作为它的依赖项,我不想安装它,而是使用 cdn,由于一些编译问题,只是尝试一下是否有帮助。

Bower component Quilljs editor module (ES6) is failing while running gulp build

"overrides": {
     "ngQuill" : {
         "dependencies" : []
     }
  }

我认为 this SO answer 可以解决您的问题。归结为将以下内容添加到您的 .bowerrc:

{
  "ignoredDependencies": [
    "quill"
  ]
}