Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Don't watch or compile .css files
Browse files Browse the repository at this point in the history
This was a non-standared feature in LibSass we had to support. It
is being removed in LibSass 3.6.0.

This prevents people from output their source directory.

See sass/libsass#2611
See #2184
See #2006
See #1933
See #1925
See #1867
See #1845
  • Loading branch information
xzyfer committed Nov 8, 2019
1 parent 625329e commit c5edd85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/watcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ watcher.reset = function(opts) {
config = clonedeep(opts || config || {});
var options = {
loadPaths: config.includePath,
extensions: ['scss', 'sass', 'css'],
extensions: ['scss', 'sass'],
follow: config.follow,
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"nan": "^2.13.2",
"npmlog": "^4.0.0",
"request": "^2.88.0",
"sass-graph": "^2.2.4",
"sass-graph": "^3.0.4",
"stdout-stream": "^1.4.0",
"true-case-path": "^1.0.2"
},
Expand Down

0 comments on commit c5edd85

Please sign in to comment.