gpt4 book ai didi

gruntjs - grunt-wiredep 对具有不同依赖关系的多个文件

转载 作者:行者123 更新时间:2023-12-02 05:56:55 26 4
gpt4 key购买 nike

当前的项目结构有点像这样:

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

建议的项目结构将在项目根目录中添加更多静态 html 文件。到目前为止,我一直在管理 Bower.json 中的所有前端依赖项,并使用 grunt-wiredep 任务将其自动包含在 index.html 中。但随着新文件的添加,每个文件将具有不同的依赖关系集。

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

管理这些具有不同 Bower 依赖项的文件的有效方法是什么?

最佳答案

您可以执行两个不同的任务,每个任务都有自己的依赖项(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",
...
}
}
}}

关于gruntjs - grunt-wiredep 对具有不同依赖关系的多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30342126/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com