norma-sass
v0.4.17
Published
Sass package for Norma build tool
Downloads
76
Readme
norma-scss
SCSS Package for Norma Build Tool
To use add the following to your norma.json:
"tasks": {
"sass": {
"src": "test/**/*",
"dest": "out"
}
}
The src
variable is where your test files are located.
The dest
variable is where you want your files to go
This package will compile sass, css, and scss files!
Linting
The norma-sass supports linting using the scsslint ruby gem. If you don't have ruby installed, it will pass over the linting process. You can specify your own configuration file (coming soon) in the task object like so:
"tasks": {
"sass": {
"src": "test/**/*",
"dest": "out",
"lint": true // or path to lint (coming soon)
}
}
Combing
This package will also comb your files on the fly using css-comb. You can specify your own comb methods (coming soon) by adding a comb property to the task object like so:
"tasks": {
"sass": {
"src": "test/**/*",
"dest": "out",
"comb": true // or path to comb (coming soon)
}
}