Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Lucas committed Jun 22, 2015
1 parent f3c2013 commit 0d57615
Showing 1 changed file with 28 additions and 8 deletions.
36 changes: 28 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ 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][w] 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
Expand All @@ -17,13 +34,16 @@ The .sassbuilder-config file
============================
```json
{
"output_path": "/path/to/compiled/css",
"options": {
"cache": true,
"debug": true,
"line-comments": true,
"line-numbers": true,
"style": "nested"
}
"project_path": "/project/path",
"output_path": "/project/path/css",
"options": {
"cache": true,
"debug": false,
"line-comments": true,
"line-numbers": true,
"style": "nested"
}
}
```

[w]: https://gist.github.com/bnlucas/a23105c69132ab9e5fe9

0 comments on commit 0d57615

Please sign in to comment.