Sublime text sass 构建系统:用注释压缩
Sublime text sass build system: compressed with comments
我的 sublime text 中安装了两个 sass 构建系统:sass 和 sass compressed。问题是 sass compressed delete my all comments which was pretty bad for the native wordpress style 因为那里需要第一个评论块。
是否可以为压缩 css 创建一个保留注释的构建系统?
当前的 sass 压缩构建系统如下所示:
{
"cmd": ["sass", "--update", "$file:${file_path}/${file_base_name}.css", "--stop-on-error", "--no-cache", "--style", "compressed"],
"selector": "source.sass, source.scss",
"line_regex": "Line ([0-9]+):",
"osx":
{
"path": "/usr/local/bin:$PATH"
},
"windows":
{
"shell": "true"
}
}
好的,我有一个非常简单的解决方法。 sass 的较新版本支持 /*!重要注释 */ 语法并在编译中省略此部分。
所以只需添加!到你的wordpress风格的评论区。
我的 sublime text 中安装了两个 sass 构建系统:sass 和 sass compressed。问题是 sass compressed delete my all comments which was pretty bad for the native wordpress style 因为那里需要第一个评论块。
是否可以为压缩 css 创建一个保留注释的构建系统?
当前的 sass 压缩构建系统如下所示:
{
"cmd": ["sass", "--update", "$file:${file_path}/${file_base_name}.css", "--stop-on-error", "--no-cache", "--style", "compressed"],
"selector": "source.sass, source.scss",
"line_regex": "Line ([0-9]+):",
"osx":
{
"path": "/usr/local/bin:$PATH"
},
"windows":
{
"shell": "true"
}
}
好的,我有一个非常简单的解决方法。 sass 的较新版本支持 /*!重要注释 */ 语法并在编译中省略此部分。
所以只需添加!到你的wordpress风格的评论区。