0

我正在用wiredep & gulp 编写一个脚本,但是当我包含Bootstrap 时,最后出现了一个意想不到的结果:

<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap-theme.css" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" />

为什么wiredep 包含.css 和min.css 文件?为什么还包括引导主题?

谢谢

4

2 回答 2

0

问题来自我的 bower.json 中的错误覆盖:

之前是:

"overrides": {
    "bootstrap": {
        "main": [
            "dist/js/*.*",
            "dist/css/*.*",
            "dist/fonts/*.*"
        ]
    }

固定的一个是:

"overrides": {
    "bootstrap": {
        "main": [
            "dist/js/bootstrap.js",
            "dist/css/bootstrap.css",
            "dist/fonts/*.*"
        ]
    }

3.3.5 需要此覆盖,3.3.6 不再需要此覆盖。

于 2015-07-06T15:18:16.330 回答
0

我使用 bindep 而不是wiredep。它更专业,具有许多功能,但最重要的是它允许使用凉亭克服凉亭限制。

npm 安装 bindep

于 2017-01-18T17:24:11.707 回答