https://github.com/zellwk/sass-lib-starter
https://github.com/zellwk/sass-lib-starter
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zellwk/sass-lib-starter
- Owner: zellwk
- Created: 2015-12-16T03:58:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-16T04:00:39.000Z (over 10 years ago)
- Last Synced: 2025-06-02T14:44:34.786Z (about 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Sass Lib Starter
This is a starter template to help you build and test Sass-based libraries.
#### Libraries Used:
- [true](https://github.com/oddbird/true) - Sass testing framework.
- [Mocha](http://mochajs.org) - Running True via Mocha allows you to test mixins
- [Gulp](http://gulpjs.com) - Running and watch Sass files (both for your library and for testing)
## Installation
1. Clone the repository
2. Run `npm install`
3. Do your stuff!
## Usage
1. Write your Sass library in `scss/_your-lib.scss`. Import any partials if necessary.
2. Write your tests in `test/test.scss`
3. Voilà!
Additional Note: You can also add `.scss` files in the `scss` folder if you wanted to create a resultant file for eyeballing the output (Check out `eyeballing.scss` for an example).