如何覆盖"忽略" bower.json依赖文件的一部分?

时间:2015-07-27 17:40:57

标签: bower bower-install

我想在我的ember项目中使用https://github.com/MrRio/jsPDF。 我想将jsPDF作为依赖项导入,因此我就这样开始了:

bower install git@github.com:MrRio/jsPDF.git --save

不幸的是,我无法从plugins目录安装文件,因为在bower.json文件中忽略了"plugins/*"目录。 我试过这种方式,但没有成功。

  "overrides": {
    "jspdf": {
      "ignore": [
        "**/.*",
        "libs",
        "CNAME",
        "jspdf.js",
        "examples/jspdf.PLUGINTEMPLATE.js",
        "todo.txt",
        "wscript.py",
        "build.sh",
        "test",
        "tools"
      ]
    }
  }
你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

我刚刚向bower添加了一个jsPDF插件包。 您可以通过

添加所有插件
bower install jsPDF-plugins --save