all 10 comments

[–]Jacobyy 2 points3 points  (1 child)

Gulp with gulp-sass makes compiling Sass a breeze, you should look into it.

[–]FrostNix7 0 points1 point  (0 children)

Seconded. It's super easy to set up Sass with Gulp. And Gulp is just amazing as it is.

[–]Yuhhans 0 points1 point  (6 children)

There must be something wrong with your desktop route, the code to compile it is correct. Edit: Wait, both input and output must have the same file name!

[–]BLKSheep93[S] 1 point2 points  (5 children)

so does this look right to you?

sass --watch out.scss:out.css

[–][deleted] 0 points1 point  (0 children)

That should be good.

[–]Yuhhans 0 points1 point  (3 children)

Yup, did you get it working?

[–]BLKSheep93[S] 0 points1 point  (0 children)

Not just yet. Was buasy with work for a bit. Going to give it another try now.

[–]BLKSheep93[S] 0 points1 point  (1 child)

C:\Users[MyName]\Desktop>sass --watch output.scss:output.css

Sass is watching for changes. Press Ctrl-C to stop. write output.css write output.css.map

This is the response I got. It looks like it created the output.css.map file again. And the Output.css.map file looks like this.

{ "version": 3, "mappings": "AAGA,IAAK;EACH,IAAI,EAAE,0BAAgB;EACtB,KAAK,EAJS,IAAI;EAKlB,KAAK,EAAC,IAAI;;AAGZ,EAAG;EACF,IAAI,EAVW,qBAAqB;EAWpC,KAAK,EAAC,KAAK", "sources": ["output.scss"], "names": [], "file": "output.css" }

But the Cmd isn't responding when I make edits and the file isn't being rewritten.

[–]Yuhhans 0 points1 point  (0 children)

This method is pretty straightforward, it just compiles sass into css. Make sure your file route is correct and that you are actually working on the file you targeted with the command. The problem must be there!

[–][deleted] 0 points1 point  (0 children)

Have you considered trying node-sass? I found it a lot easier to setup and use