We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've noticed that if an import file is UTF8-BOM encoded, and the first line of the file contasins an @import, the import is not processed.
two.scss [UTF8 encoded]
.two { display: none; }
utf8-bom.scss [UTF8-BOM encoded]
@import 'two';
import-utf8-bom.scss [UTF8 encoded]
@import 'utf8-bom';
results in:
// This file is auto-generated. Do not edit! // baka:source C:\Dev\Src\baka\__tests__\__fixtures__\import-utf8-bom.scss // #region @import './utf8-bom'; -> /Dev/Src/baka/C:\Dev\Src\baka\__tests__\__fixtures__\utf8-bom.scss @import './two'; // #endregion
whereas I'd expect something like:
// This file is auto-generated. Do not edit! // baka:source C:\Dev\Src\baka\__tests__\__fixtures__\import-utf8-bom.scss // #region @import './utf8-bom'; -> /Dev/Src/baka/C:\Dev\Src\baka\__tests__\__fixtures__\utf8-bom.scss .two { display: none; } // #endregion
The text was updated successfully, but these errors were encountered:
fix: fixed an issue whereby files encoded with UTF8-BOM would cause i…
6aac86a
…mports to be ignored joneff#121
No branches or pull requests
I've noticed that if an import file is UTF8-BOM encoded, and the first line of the file contasins an @import, the import is not processed.
two.scss [UTF8 encoded]
utf8-bom.scss [UTF8-BOM encoded]
import-utf8-bom.scss [UTF8 encoded]
results in:
whereas I'd expect something like:
The text was updated successfully, but these errors were encountered: