Skip to content

Commit

Permalink
Merge pull request #37 from alexnj/revert-34-master
Browse files Browse the repository at this point in the history
Revert "Don't included Sass partials in the automatic build process"
  • Loading branch information
alexnj committed Aug 5, 2016
2 parents 263037d + cb08398 commit 97bf9b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -42,7 +42,7 @@ Do NOT edit the default SublimeOnSaveBuild settings. Your changes will be lost w
Set to `1` to trigger a build on save. By default, this is set to `1`. I.e., SublimeOnSaveBuild attempts to build all projects. You can change this behavior and build only specific projects by configuring the user specific setting of `build_on_save` to `0` and project specific setting to `1`.

* **filename_filter**
SublimeOnSaveBuild matches the name of the file being saved against this regular expression to determine if a build should be triggered. By default, the setting has a value of `"^[^_]+\\.(css|js|sass|less|scss)$"`.
SublimeOnSaveBuild matches the name of the file being saved against this regular expression to determine if a build should be triggered. By default, the setting has a value of `"\\.(css|js|sass|less|scss)$"`.

Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion SublimeOnSaveBuild.sublime-settings
@@ -1,4 +1,4 @@
{
"filename_filter": "^[^_]+\\.(css|js|sass|less|scss)$",
"filename_filter": "\\.(css|js|sass|less|scss)$",
"build_on_save": 1
}

0 comments on commit 97bf9b4

Please sign in to comment.