Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

compass-rs/sass-rs

Repository files navigation

sass-rs

Build Status Windows build status Maintenance status

Api documentation on docs.rs

--

This crate is not maintained anymore as libsass is deprecated. Consider using https://github.com/connorskees/grass or https://github.com/kaj/rsass instead.

--

This crate is a wrapper around libsass, currently tracking v3.6.4.

To build this crate on Windows, you will need to have Visual Studio installed.

You can control the number of CPU used to build libsass by setting the MAKE_LIBSASS_JOBS variable to the desired value. It defaults to the number of CPUs in the machine.

Binary

This package also provides a small binary that can be cargo installed to convert Sass files and print the output CSS. Example usage:

$ sass-rs < source/style.scss  # for SCSS
$ sass-rs --sass < source/style.sass  # for SASS
$ sass-rs --sass --expanded < source/style.sass
$ sass-rs --sass --compact < source/style.sass
$ sass-rs --sass --compressed < source/style.sass
$ sass-rs --sass --compressed < source/style.sass > build/style.css

This is a small added feature that isn't meant to fulfill every usecases. If you want to have something added to the binary, do a PR as I will not implement it myself.

Not supported yet

Importers and functions are not supported yet.

Building (Windows)

Windows compilation using VS 2019 requires that all the environment variables for MSBuild to be availble.

An indicator that the environment is not properly setup is the following error message:

error MSB4019: The imported project "C:\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.

If you find this error, you have a couple of of options to select:

  • [Easiest] Open the Developer Command Prompt for VS 2019 application to compile the project. This terminal will setup all the needed environment variables to let it compile.
  • Setup the environment variables (eg: PATH, LIB) as documented on Microsoft's website
  • Install the complete setup of Visual Studio 2015 - not only the Visual C++ Build tools

About

Rust library wrapper for libsass (sass-sys).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages