Skip to content

DimShadoWWW/slurp-sass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Sass -> CSS compilation for Slurp, powered by libsass

Sample slurp.go code:

slurp.Task{
    Name:  "scss",
    Usage: "Build scss files into app.css",
    Action: func(c *slurp.C) error {
        return fs.Src(c,
            "./input/scss/*.scss",
        ).Then(
            sass.Compile(c),
            util.Concat(c, "app.css"),
            fs.Dest(c, "./output/css/"),
        )
    },
},

Note: To conform with the standards of the Ruby Sass/Compass tools, .scss files prefixed with an underscore will not be compiled unless directly @imported.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages