-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove sass support #42
Conversation
stoeffel
commented
Mar 1, 2018
•
edited
Loading
edited
a871c13
to
c3299b3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I grepped for sass
and found it in a few more places-
In Parser/Ast.hs
, does SourceType still need to have a Sass value? Then we could get rid of the Ast.Sass
case over in DependencyTree.hs
Sass is also still mentioned in a couple of comments- on the readme, and in Parser.Require
let wrapped = wrapModule fnName replacedContent | ||
return $ Just wrapped | ||
else return Nothing | ||
lift $ do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh nice this is cleaner now 😻
@@ -76,12 +60,9 @@ mockConfig = | |||
[] | |||
("." </> "test" </> "fixtures" </> "concat" </> "sources") | |||
("." </> "test" </> "fixtures" </> "concat" </> "sources") | |||
[] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❔ What did this []
do?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
N/m it was the sass load paths in the old Config. I get it!
we should merge #43 first |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.