我有这种SCSS结构:
app
styles.scss
bower_components
_colors.scss
_fonts.scss
sass
index.scss
styles.scss:
@import "sass/index";
index.scss:
@import "bower_components/_colors";
@import "bower_components/_fonts";
app
文件夹在File Watcher设置中设置为工作目录,在WebStorm中标记为“Resource Root”。但是,转换失败并出现错误:
error sass/index.scss (Line 3: File to import not found or unreadable: bower_components/_colors.)
我已经读过在SCSS中评估的@import
但在我的情况下,很明显Ruby转换器不会尝试查找相对于根位置的文件。这是一个错误吗?或者我做错了什么?
我通过Ruby安装了SCSS,并根据https://www.jetbrains.com/help/webstorm/2016.1/transpiling-sass-less-and-scss-to-css.html
设置了文件监视器这是我的文件观察程序设置:
答案 0 :(得分:1)
在命令行中运行scss.bat时会出现完全相同的问题:
C:\Projects\prj>cd app
C:\Projects\prj\app>C:/Ruby193/bin/scss.bat --no-cache --update sass/index.scss
error sass/index.scss (Line 1: File to import not found or unreadable: bower_components/_colors.)
请参阅http://mongodb.github.io/node-mongodb-native/2.1/reference/connecting/connection-settings/:自动放置在Sass加载路径上的当前工作目录在3.3中已弃用。您需要使用-I
选项显式传递加载路径,以使用相对于工作目录的文件夹。像: