Dreamweaver: Setting up SASS and Compiling the Code

SASS

July 3, 2013 / Updated: March 12, 2019 / Lena Shore
Filed under:

SASSIf you haven’t discovered SASS (or LESS) scoot on over to the SASS website and check it out. If you’ve heard about SASS but don’t quite understand it, let me explain it briefly.

  • SASS is an extension of CSS.
  • SASS allows you to reuse chunks of code and create variables.
  • When you are done writing your SASS, you will need to compile it into CSS

Step 1: Get Dreamweaver to read your SASS files

By default Dreamweaver doesn’t recognize your SASS files. That little .scss extension confuses it. Let’s fix that:

  • On a Mac: Find your Extensions file for Dreamweaver by going here: ~username –> Library –> Application Support –> Adobe –> Dreamweaver CS6 (or whatever version you have) –> en_us –> Configuration –> Extensions.txt
  • On Windows: Find your Extensions file for Dreamweaver by going here: Windows 7 paths are C: –> Users –> Your Username –> AppData –> Roaming –> Adobe –> Dreamweaver Your Versions –> en_US –> Configuration for Extensions.txt
  • Add SCSS and LESS to line 8, so that it reads: CSS,SCSS,LESS:Style Sheets.
  • Save the file, close, and restart Dreamweaver.
  • You should be able to open a .scss or .less file in Dreamweaver now.

SASS-extension

Step 2: Get Dreamweaver to color code your SASS files

To get Dreamweaver to color code everything nicely, we need to edit another file.

  • On a Mac: Find and open the MMDocumentTypes.xml file: ~username –> Library –> Application Support –> Adobe –> Dreamweaver CS6 (or whatever version you have) –> en_us –> Configuration –> DocumentTypes –> MMDocumentTypes.xml
  • On Windows: Find and open the MMDocumentTypes.xml file: C: –> Program Files (x86) –> Adobe –> Adobe Dreamweaver Your Version –> configuration –> DocumentTypes for MMDocumentTypes.xml
  • Scroll down to line 142. You’ll notice two properties on line 142: winfileextension=”css” macfileextension=”css”.
  • Add scss and less (comma separated) to the appropriate property for your platform.
  • Save the file and restart Dreamweaver.

SASS-color-code

Compiling your SASS

Now, you need to compile your SASS to CSS. I’m sure there are plenty of ways to do this – but I recommend CodeKit. It’s a wonderful piece of software I discovered about a year ago. You can load your SCSS files into it and tell it to output to a CSS file that is compiled to your liking. Go visit the CodeKit website to check it out.

hero-window

Archives

Categories