leafo / scssphp

SCSS compiler written in PHP
MIT License
1.34k stars 214 forks source link

@import just imports one file #713

Closed patriceckhart closed 4 years ago

patriceckhart commented 4 years ago

In my package "neosrulez/scssparser" I use "leafo/scssphp". In the main scss file I'm doing @import. It works. But only with one file. In the next line, after the main file I use another @import. But this file is ignored. All others too.

The main scss looks like this. test.scss is ignored:

@import "resource://NeosRulez.Bootstrap/Private/Styles/bootstrap";
@import "resource://NeosRulez.Bootstrap/Private/Styles/test.scss";
robocoder commented 4 years ago

Double check your 2nd line of main.scss actually ends with a semi-colon.