Embed the Dart Sass compiler in your Swift program. Write
stylesheet importers and SassScript functions in Swift.
This package provides a Swift language interface to a separate Sass
implementation. The DartSass module lets you access
Dart Sass,
the most up to date implementation of the Sass language. It runs the
Dart Sass compiler as a separate process
and communicates with it using the
Sass embedded protocol. If you
come across another implementation of the ‘compiler’ side of the protocol then
that should work fine too.
This package doesn’t support LibSass right now. More info.
Examples
Minimally:
import DartSass
let compiler = try Compiler()
let results = try await compiler.compile(fileURL: scssFileURL)
print(results.css)
Although the compiler output is more structured, if this is all you want to do
then you’re probably better off running the binary directly. The reason to use
this package is to provide custom implementations of @use rules to load
content, and custom functions to provide application-specific behavior:
The Swift package bundles the Dart Sass compiler for macOS and Linux
(specifically Ubuntu Focal/20.04 64-bit) both x86_64 and arm64. The correct
binary is selected at build time. The selection is made based on the host
architecture though, so if you want to cross-compile you’ll need to assemble
the results manually.
For other platforms you will need to either download the correct version from
the release page or build
it manually, ship it as part of your program’s distribution, and use
this initializer.
There is no need to install a Dart runtime or SDK as part of this, the
dart-sass-embedded program is standalone. The version required is shown in
the VERSION_DART_SASS file.
On LibSass
LibSass is the C++ implementation of Sass.
In recent years it has fallen behind the specification and reference
implementations, and was
deprecated in 2020.
However, work is underway to revive the project and it may be that LibSass 4
emerges as an alternative Sass implementation with the same level of language
support as Dart Sass. As of spring 2023 this revival effort is on hold: I’m
not holding my breath.
See the experimental libsass4 branch
for the current state of development: if LibSass itself manages to get to a
relased V4 then this swift-sass package will support it as an alternative
integration.
Swift Sass
Embed the Dart Sass compiler in your Swift program. Write stylesheet importers and SassScript functions in Swift.
This package provides a Swift language interface to a separate Sass implementation. The
DartSass
module lets you access Dart Sass, the most up to date implementation of the Sass language. It runs the Dart Sass compiler as a separate process and communicates with it using the Sass embedded protocol. If you come across another implementation of the ‘compiler’ side of the protocol then that should work fine too.This package doesn’t support LibSass right now. More info.
Examples
Minimally:
Although the compiler output is more structured, if this is all you want to do then you’re probably better off running the binary directly. The reason to use this package is to provide custom implementations of
@use
rules to load content, and custom functions to provide application-specific behavior:DartSass
is built on NIO but the user interface is entirely Swift 5.5 async-await.Documentation
Requirements
Installation
Only with Swift Package Manager, via Xcode or directly:
Package dependency:
Target dependency:
The Swift package bundles the Dart Sass compiler for macOS and Linux (specifically Ubuntu Focal/20.04 64-bit) both x86_64 and arm64. The correct binary is selected at build time. The selection is made based on the host architecture though, so if you want to cross-compile you’ll need to assemble the results manually.
For other platforms you will need to either download the correct version from the release page or build it manually, ship it as part of your program’s distribution, and use this initializer.
There is no need to install a Dart runtime or SDK as part of this, the
dart-sass-embedded
program is standalone. The version required is shown in the VERSION_DART_SASS file.On LibSass
LibSass is the C++ implementation of Sass. In recent years it has fallen behind the specification and reference implementations, and was deprecated in 2020. However, work is underway to revive the project and it may be that LibSass 4 emerges as an alternative Sass implementation with the same level of language support as Dart Sass. As of spring 2023 this revival effort is on hold: I’m not holding my breath.
See the experimental libsass4 branch for the current state of development: if LibSass itself manages to get to a relased V4 then this
swift-sass
package will support it as an alternative integration.Contributions
Welcome: open an issue / johnfairh@gmail.com / @johnfairh@mastodon.social
License
Distributed under the MIT license.