Skip to content

chriscameron/gosass

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gosass

About

Gosass is a fast sass compiler. We made this because the normal ruby compiler ran too slowly, and the native compiler (sassc) didn't have all the features we needed (directory compilation and watching.)

Installation

Gosass depends on sassc, so install that first. On mac, you can use homebrew: brew install sassc.

Then install gosass:

go get github.com/dailymuse/gosass
pushd $GOPATH/src/github.com/dailymuse/gosass
make install
popd

Example Usage

# Compile an individual file
gosass -input file.scss -output file.css

# Compile a directory
gosass -input sass/ -output css/

# Live-compile a directory
gosass -input sass/ -output css/ -watch

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 97.3%
  • CSS 1.9%
  • Makefile 0.8%