Leverages the SassAndCoffee library for a standalone executable, which can be used as a 3rd-party compiler.
See also blog post.
To use in Sublime Text editor with SASS Build System. Here because I found someone else who asked for it - see original issue from source.
sassifier.exe "path\to\css.css" true|false dependencies;separated;by;semicolons
Where true|false
is whether or not to compress the output, and whatever dependencies it requires (honestly, not really sure what that is) separated by semicolons.
You can also change the autogenerated "prefix" via the Settings file. Note that there are two different prefixes, for un-/compressed operations.
Put the whole shebang (i.e. compiled files) in your Packages folder under SASS/Sassifier
.
You can change the autogenerated "prefix" via the settings file Sassifier.exe.config
.
Create a new Build System:
{
"cmd": ["Sassifier.exe", "$file"],
"working_dir": "$packages/SASS/Sassifier",
"selector": "source.sass"
}
Save as \Your Sublime Folder\Data\Packages\Sass\SASS (Windows).sublime-build
.
Best when used in conjunction with a SASS syntax highlighter.