Skip to content

Commit

Permalink
closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschambers committed Feb 8, 2015
1 parent 0a5320c commit 310d0d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,15 @@ This is a very simple project and is held together by bits of string and sticky

### Limitations

- Currently compatible with `.sass`, `.scss` and `.js` files
Currently compatible with the following file extensions:

- .sass
- .less
- .scss
- .js

### Roadmap

- Support for LESS
- Support for Coffeescript
- Support for Javascript view templates (hamlc etc)
- Add Bower overview
4 changes: 2 additions & 2 deletions lib/filetree.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function parse_comments(file, ext, spaces_added) {
var output = "",
first_comment_contents = "";

if ((ext == 'sass') || (ext == 'scss') || (ext == 'js')) {
if ((ext == 'sass') || (ext == 'scss') || (ext == 'js') || (ext == 'less')) {

var lines = file.data.split("\n");

Expand Down Expand Up @@ -342,4 +342,4 @@ var self = module.exports = {
}


};
};
4 changes: 4 additions & 0 deletions lib/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ var self = module.exports = {
"type": "scss",
"title": "Stylesheets",
"path": n.get('frontend').stylesheets
}, {
"type": "less",
"title": "Stylesheets",
"path": n.get('frontend').stylesheets
}, {
"type": "js",
"title": "Javascripts",
Expand Down
File renamed without changes.

0 comments on commit 310d0d8

Please sign in to comment.