Skip to content

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 sass#2184
See sass#2006
See sass#1933
See sass#1925
See sass#1867
See sass#1845
  • Loading branch information
xzyfer authored and saper committed May 17, 2020
1 parent 07fbce6 commit 213441d
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.5",
"sass-graph": "^3.0.5",
"stdout-stream": "^1.4.0",
"true-case-path": "^1.0.2"
},
Expand Down

0 comments on commit 213441d

Please sign in to comment.