How to ignore a particular bower component being i

2019-09-14 19:29发布

问题:

I am trying to install ng-quill which takes quill as its dependency which I do not want to install and use cdn instead, due to some compilation issue, just trying if this can help.

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

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

回答1:

I think this SO answer has the solution to your problem. It boils down to adding the following to your .bowerrc:

{
  "ignoredDependencies": [
    "quill"
  ]
}


标签: gulp bower quill