我正在尝试在sage wp主题中添加新的bower组件,唯一的问题是我只能在sass中添加很多?
这是我的 bower.json
{
"name": "sage",
"homepage": "https://roots.io/sage/",
"authors": [
"Ben Word <ben@benword.com>"
],
"license": "MIT",
"private": true,
"dependencies": {
"bootstrap-sass": "3.3.7",
"pushy": "1.0.0",
"fullpage.js": "2.9.2"
}
}
但是在 main.scss 中没有添加任何内容?
// Automatically injected Bower dependencies via wiredep (never manually edit this block)
// bower:scss
@import "../../bower_components/bootstrap-sass/assets/stylesheets/_bootstrap.scss";
// endbower
答案 0 :(得分:2)
运行bower install命令时,必须在其末尾添加--save标志,以便更新所有内容。