I want to incorporate the SMACSS architecture into a site that I am building.
On my desktop I have a folder named after the site which I am building. Containing my css,js images and sass folders.
All the contents of the sass folders are partials which I import into a main.scss file(contained within the sass directory).
Here is my sass directory:
sass/
|
base
| _ file.scss
| _ file1.scss
|
layout
| _ file.scss
| _ file1.scss
|
module
| _ file.scss
| _ file1.scss
|
state
| _ file.scss
| _ file1.scss
|
theme
| _ file.scss
| _ file1.scss
I want to compile my main.scss file into a file called stylesheet.css which should be inside the css folder.
I have tried:
sass --watch main.scss:stylesheet.css
With no luck.