grunt-wiredep on multiple files with different dependencies

不打扰是莪最后的温柔 提交于 2019-12-04 18:45:13

问题


The current project structure is somewhat like this:

-index.html
|
-bower.json
|
+-bower_components

The proposed project structure will add a few more static html files in the project root. Till now I have been managing all the frontend dependencies in bower.json and had it automatically included in index.html using the grunt-wiredep task. But with new files getting added, each file will have different set of dependencies.

-index.html
|
-file-with-some-other-bower-dependency.html
|
-bower.json
|
+bower_components

What would be an efficient way of managing these files with different bower dependencies?


回答1:


You can do two different task, each with their own dependencies (bowerJson) :

  grunt.initConfig({
wiredep: {
  app: {
    src: 'index.html',
    "bowerJson":{
      "dependencies": {
        "jquery":"=2.1.3",
          ...
      }
    }

  },
  app2: {
    src: 'file-with-some-other-bower-dependency.html',
    "bowerJson": {
      "dependencies": {
        "bootstrap": "~3.0.0",
        ...
      }
    }
  }}


来源:https://stackoverflow.com/questions/30342126/grunt-wiredep-on-multiple-files-with-different-dependencies

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!