目录
目录README.md

SwiftySass

A LibSass wrapper for Swift. SwiftySass allows you to compile Sass code from Swift.

As of October 2020, LibSass is deprecated. I am unsure what that currently means for the future of this project. For the time being, I am not planning on continuing work on SwiftySass.

Installation

First, you need to have LibSass installed on your system. SwifySass expects the installation to be located at /usr/local/include/. Using Homebrew is suggested:

brew install libsass

SwiftySass can be installed using Swift Package Manager. To use SwiftySass in a project, add it to the dependencies section in your project’s Package.swift:

.package(url: "https://github.com/r-thomson/SwiftySass", from: "0.3.0")

Usage

import SwiftySass

// Compile from a string...
let scss = """
$primary-color: #222;
body {
  color: $primary-color;
}
"""
var css = try? compileSass(fromSource: scss)

// ...or from a file
let fileURL = URL(fileURLWithPath: "./style.scss")
css = try? compileSass(fromFile: fileURL)
关于
103.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号