我刚刚使用
Ruby 1.9.2在Windows 7上安装了Compass 0.11.5.
我有我的开发环境设置为所有文件使用Unix行尾.
我创建了一个初始的sass测试项目,并注意到它创建的所有文件都有Windows行结束.我将现有的.css文件从另一个项目(使用unix行结尾)移动到sass文件夹中,并将扩展名更改为.scss.我运行’compass compile’命令为这个新文件生成.css文件,而它创建的.css文件具有Windows行结尾.
在Compass文档中找不到任何配置选项,强制Compass生成带有Unix行尾的文件.
是否可以配置Compass在Windows上使用Unix行结尾生成文件?
更新
经过进一步调查,可以选择从Compass将配置选项传递给Sass.
Property Name Type Description sass_options Hash These options are passed directly to the Sass compiler. For more details on the format of sass options,please read the sass options documentation.
Sass有一个用于生成unix行结尾的选项:
:unix_newlines
如果为true,则在编写文件时使用Unix样式的换行符.只在Windows上有意义,只有当Sass正在编写文件(在Rack,Rails或Merb,直接使用Sass :: Plugin或使用命令行可执行文件时).
看来,将以下行添加到sass-test项目的config.rb文件中可以解决问题:
sass_options = {:unix_newlines => true}
根据
https://github.com/chriseppstein/compass/issues/949应该是固定在sa. 3.1.20 但在我的盒子上没有快乐…仍然Windows线路结束
原文链接:https://www.f2er.com/windows/369683.html