Skip to content
This repository has been archived by the owner on Sep 28, 2018. It is now read-only.

Commit

Permalink
Fix for SCSS imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad Jones committed Mar 16, 2017
1 parent a77af4c commit e58894f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compilers/Scss.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Scss extends Css
public function compile(): string
{
$parser = new Scss_Parser();
$parser->setImportPaths($this->file->getPath());
$parser->addImportPath($this->file->getPath());
$this->source = $parser->compile($this->source);
return parent::compile();
}
Expand Down

0 comments on commit e58894f

Please sign in to comment.