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

Commit 26b99a0

Browse files
committed
Don't watch or compile .css files
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
1 parent b367965 commit 26b99a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/watcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ watcher.reset = function(opts) {
99
config = clonedeep(opts || config || {});
1010
var options = {
1111
loadPaths: config.includePath,
12-
extensions: ['scss', 'sass', 'css'],
12+
extensions: ['scss', 'sass'],
1313
follow: config.follow,
1414
};
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"node-gyp": "^3.3.1",
6868
"npmlog": "^4.0.0",
6969
"request": "2.87.0",
70-
"sass-graph": "^2.2.4",
70+
"sass-graph": "^3.0.0",
7171
"stdout-stream": "^1.4.0",
7272
"true-case-path": "^1.0.2"
7373
},

0 commit comments

Comments
 (0)