Coder Social home page Coder Social logo

sassbuilder's Introduction

Sass Builder

Sass Builder is a SASS compiler that reads a config file (.sassbuilder-config) stored in a sass/scss source folder. It is a JSON file that sets .css output folder and SASS flags [cache, style, debug, line numbers, line comments].

The plugin works on post save of a .sass/.scss file in Sublime Text.

UPDATED!

This has been resting on the side burner for quite some time and it has finally received the attention it needed! This has finally been updated to support Sublime Text 3 and it also works with Python 3.

There was an issue with the grep command being called if the system didn't have it available. This has been corrected to search for grep first and run a pure pythonic method if it's not found in the system's PATH.

I have a small method for this which.py that mimics the Linux command which.

The .sassbuilder-config has been changed to .sassbuilder-config.json to remove the error Sublime Text 3 generates. project_path has be added to this to allow for scanning in the entire project path when partials are saved.

  • Automatically runs on save.
  • Create .sassbuilder-config files with ease
    • Tools->Sass Builder Config
    • Ctrl+B + Ctrl+S keystroke
    • Right-click a folder or folders in the side bar.

The .sassbuilder-config file

{
    "project_path": "/project/path",
    "output_path": "/project/path/css",
    "options": {
        "cache":         true,
        "debug":         false,
        "line-comments": true,
        "line-numbers":  true,
        "style":         "nested"
    }
}

Install with Sublime Package Control

  1. Add this repo using "Package Control: Add Repository" https://github.com/bnlucas/SassBuilder
  2. You can then add this package using Package Control as usual. Find "Package Control: Add Package" and search for "Sass Builder"

Known Issues on Mac

For some users, you may receive this error:

b'/bin/sh: sass: command not found\n'

This is because:

'There is a breakage or removal of environment variable functionality in launchd.conf for users of OS X 10.10 (Yosemite) and above.'

-Source https://support.enthought.com/hc/en-us/articles/204469160-How-do-I-set-PYTHONPATH-and-other-environment-variables-for-Canopy-

You can either follow the instructions to add the path to your executable to your PYTHONPATH as detailed in the link above or follow these steps:

  1. Install the "PackageResourceViewer" package to sublime using Package Control, then open this plugin within sublime.
  2. Edit SassBuilder.py line 113 changing
sass = 'sass --update \'{0}\':\'{1}\' --stop-on-error --trace {2} ' \
               '--style {3}'

to

sass = '/usr/local/bin/sass --update \'{0}\':\'{1}\' --stop-on-error --trace {2} ' \
               '--style {3}'

sassbuilder's People

Contributors

burzak avatar bnlucas avatar frenchesco avatar

Watchers

Aakash Ahmed avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.