Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Integration with Compass

Dave Olsen edited this page Nov 7, 2013 · 3 revisions

Note: These directions are rough. They worked for me but YMMV. We also have to streamline the workflow.

Setting Up Compass

Setting up Compass to work with the PHP version of Pattern Lab should be really straightforward. To set-up a Compass config that uses SCSS and doesn't install any starter stylesheets do the following:

  1. Open Terminal on a Mac
  2. gem install compass (if you don't have it)
  3. cd <patternlab-project-folder>
  4. compass create --bare --sass-dir "source/css" --css-dir "source/js" --javascripts-dir "source/images"

You should be ready to rock & roll.

Workflow with Pattern Lab

Compass will only recompile your SCSS. To get Pattern Lab to rebuild your entire site as well as reload the browser when your SCSS files have been updated do the following:

  1. Open Terminal on a Mac
  2. cd <patternlab-project-folder>
  3. compass watch
  4. Open a new tab in Terminal
  5. php builder/builder.php -w
  6. Open a new tab in Terminal
  7. php listeners/contentSyncBroadcasterServer.php
  8. Reload your browser

As you make changes to the SCSS files Compass will recompile them and, seeing the changes to styles.css, the PHP version of Pattern Lab will rebuild the entire site. It should also reload the Pattern Lab website.