Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinwalterfit/swift-libsass
A Swift wrapper around the LibSass C/C++ port of the Sass engine.
https://github.com/robinwalterfit/swift-libsass
libsass sass scss swift swift-package-manager
Last synced: 5 days ago
JSON representation
A Swift wrapper around the LibSass C/C++ port of the Sass engine.
- Host: GitHub
- URL: https://github.com/robinwalterfit/swift-libsass
- Owner: robinwalterfit
- License: mit
- Created: 2017-10-28T11:41:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-27T15:18:48.000Z (almost 7 years ago)
- Last Synced: 2024-10-10T15:23:52.966Z (26 days ago)
- Topics: libsass, sass, scss, swift, swift-package-manager
- Language: Swift
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Swift-libsass
This repository helps you to link the C LibSass library in your Swift projects.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
To use this repository you need to install the LibSass Library first.
See [this](https://github.com/sass/libsass/blob/master/docs/build.md) instructions for building/installing LibSass.
### Installing
If you want to use LibSass in your Swift projects create a new library/executable project and add Swift-libsass as a dependency.
First create a new Project
```
$ mkdir example
$ cd example
$ swift package init # or swift package init --type library
```Edit your Package.swift and add the dependency
```swift
.package( url: "https://github.com/robinwalterfit/Swift-libsass.git", from: "1.0.0" )
```## Built With
* [LibSass](http://sass-lang.com/libsass) - The LibSass C/C++ port of the Sass engine
## Versioning
I use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/robinwalterfit/Swift-libsass/tags).
## Authors
* **Robin Walter** - *Initial work* - [robinwalterfit](https://github.com/robinwalterfit)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details