我最近用yarn添加了各种库,如下所示:
yarn
yarn add jquery backbone underscore bootstrap
对于bower,有一种方法可以列出每个库所在的路径,如何使用yarn执行此操作?yarn list --paths只给了我库的名称和版本号。
bower
yarn list --paths
5cg8jx4n1#
问题是,您试图以bower以前的工作方式使用yarn,但是yarn list --paths只会给予您所注意到的依赖项和版本号。我想你需要明白的是你使用的不是bower_components,而是node_modules。这样,你的路径可能是类似/node_modules/bootstrap/dist/css/bootstrap.css的东西。打开你的node_modules文件夹,你就会看到我所说的。
bower_components
node_modules
/node_modules/bootstrap/dist/css/bootstrap.css
1条答案
按热度按时间5cg8jx4n1#
问题是,您试图以
bower
以前的工作方式使用yarn
,但是yarn list --paths
只会给予您所注意到的依赖项和版本号。我想你需要明白的是你使用的不是
bower_components
,而是node_modules
。这样,你的路径可能是类似/node_modules/bootstrap/dist/css/bootstrap.css
的东西。打开你的node_modules
文件夹,你就会看到我所说的。