SCSS:node-sass 替换旧的 Compass image-width 函数

SCSS: node-sass replacement for old Compass image-width function

我正在移植一个遗留的 Web 项目,该项目使用 Compass for SCSS 编译来使用 node-sass 构建,因为 Compass 需要 Ruby 并且似乎已经失效三年了。

其中一个 SCSS 文件包含对 Compass 支持的 'image-width' 函数的调用:

padding-left: $message-box-icon-padding * 2 + image-width('messages/loading.gif');
width: image-width('messages/loading.gif');
height: image-width('messages/loading.gif');

幸好只有三个,看来第三个应该是image-height

应该用什么来代替这些对图像宽度的调用?

sprite-magic-importer 取代了 COMPASS 的大部分功能。