,所以我正在设置一个新项目,我想通过NPM使用Bourbon为SCSS使用Bourbon。这需要进行npm install bourbon
,然后以某种方式将路径在编译时将路径输送到节点 - 萨斯。
我当前的SASS脚本看起来像这样:
node-sass --output-style compressed -o build/css/ scss/
和波旁威士忌表示我需要做类似的事情:
require("bourbon").includePaths
但是如何通过命令行?
您需要在这样的命令行中使用include-path
选项添加波旁威士忌样式表(Multiline以可读性,需要在package.json
中的单行):
node-sass
--include-path node_modules/bourbon/app/assets/stylesheets/
--output-style compressed -o build/css/ scss/