SASS Build
SASS build sytem for Sublime Text 2
Details
Installs
- Total 203K
- Win 128K
- Mac 56K
- Linux 18K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 4 | 0 | 1 | 0 | 4 | 3 | 2 | 0 | 0 | 2 | 2 | 0 | 2 | 2 | 0 | 1 | 3 | 1 | 1 | 3 | 1 | 3 | 0 | 0 | 0 | 0 | 1 | 2 | 2 | 2 | 1 | 3 | 1 | 0 | 1 | 0 | 6 | 2 | 1 | 2 | 2 | 2 | 2 | 3 | 7 | 4 |
Mac | 0 | 0 | 1 | 0 | 0 | 0 | 4 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 3 | 1 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
Linux | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 4 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 1 | 1 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
SASS build system for Sublime Text 2
Note: I'm working in a portable version of the SASS build with all the libraries included & ready to use. It will be available (I hope!) the next week.
Description
Provides two Build system for SASS files (with and without compression)
Prerequisites
Requires Ruby & SASS libraries.
Step by step:
Install Ruby library
Windows: Download and install Ruby. You can find it here: http://rubyinstaller.org/downloads/
Reboot after install it.
IMPORTANT: Don't forget to mark the option 'Add Ruby executables to your PATH'. If you don't check the option, you will have to modify the path in the Build file afterwards.
OS X & Linux: It's already installed. Easy! :)
Installing SASS
Open your console ('Command prompt with Ruby' on Windows) and execute the following command:
gem install sass
Installing
OPTION 1 - With the Package Control plugin (recommended)
The easiest way to install this package is through Package Control.
Download and install the Package Control Plugin. Follow the instructions on the website.
Open the command panel:
Control+Shift+P
(Linux/Windows) orCommand+Shift+P
(OS X) and select 'Package Control: Install Package'.When the packages list appears type 'SASS' and you'll find the SASS Build System. Select to install it.
Now you can compile your SASS files! Launch your build with
Control+B
(Linux/Windows) orCommand+B
(OS X).Enjoy your coding =)
OPTION 2 - With Git
Clone the repository in your Sublime Text “Packages” directory:
git clone git://https://github.com/jaumefontal/SASS-Build-SublimeText2.git SASS-build
You can find your 'Packages' inside the following directories:
- OS X:
~/Library/Application Support/Sublime Text 2/Packages/
- Windows:
%APPDATA%/Sublime Text 2/Packages/
- Linux:
~/.Sublime Text 2/Packages/
OPTION 3 - Without Git
Download the latest source zip from Github and extract it into a new folder named SASS-Build
in your Sublime Text “Packages” folder.
Using the build
After installing the package you will find two new options in Tools > Build system
of your Sublime menu: SASS and SASS - Compressed.
By default your .scss
and .sass
files will be built using the SASS build (not compressed).
And remember, always you can launch the selected build with Control+B
(Linux/Windows) or Command+B
(OS X).
Recommendations
- Is recommended to use this build with one of the next plugins: SASS plugin or SCSS.tmbundle.
- Also, I recommend the plugin SublimeOnSaveBuild. Just save your SASS files and transform them into CSS!
- If you want to change the default folder of your generated CSS files into another one, you can edit the build:
Example: Save your CSS files into a css
folder:
"cmd": ["sass", "--update", "$file:${file_path}/../css/${file_base_name}.css"],
Author
Created by Jaume Fontal (@jaumefontal).
If you need more info you can find me on Twitter!
Acknowledgments
Thanks to the collaboration of @hdennison with the testing in MacOS.