wiredep 正在返回物理路径,而不是相对路径

wiredep is returing physical path, instead of relative path

我正在尝试从我的 gruntfile 中的 wiredep 获取 itens,但它总是 returning 一个物理路径,例如:"D:\folder\folder\file.css",而在文档中它说它将return 相对路径 (https://github.com/taptapship/wiredep#programmatic-access).

我的代码是:

在 grunt 文件中:

var myCss = require('wiredep')().css

在我的 index.html 我有:

<!-- bower:css -->
    <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
    <link rel="stylesheet" href="bower_components/normalize.css/normalize.css" />
    <link rel="stylesheet" href="bower_components/angular-chart.js/dist/angular-chart.css" />
    <link rel="stylesheet" href="bower_components/angular-snap/angular-snap.css" />
    <link rel="stylesheet" href="bower_components/ionicons/css/ionicons.css" />
    <link rel="stylesheet" href="bower_components/angular-carousel/dist/angular-carousel.css" />
    <link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css" />
    <!-- endbower -->

我希望它成为 return 一个具有原样路径的数组,例如:"bower_components/font-awesome/css/font-awesome.css"

检查 wirerep 配置参数的选项 ignorePath。为了给你更多的细节,你应该提供你的项目文件夹的完整路径结构,但是试试这样的东西

var myCss = require('wiredep')({ignorePath: '/../../'}).css