We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 152eb45 commit a2f047cCopy full SHA for a2f047c
CHANGES.rst
@@ -10,6 +10,7 @@ Dev
10
- Refactor ``compilestatic`` commmand to ensure that each file is compiled no more than once.
11
- Add ``include_path`` option to LESS compiler
12
- Take account of ``load_paths`` option when doing inline compilation with ``libsass``
13
+ - Bugfix: take account of additional compiler options when doing inline compilation with SASS
14
15
1.5
16
===
static_precompiler/compilers/scss.py
@@ -286,7 +286,7 @@ def compile_source(self, source):
286
args = [
287
self.executable,
288
"-s",
289
- ]
+ ] + self.get_extra_args()
290
if self.executable.endswith("scss"):
291
args.append("--sass")
292
0 commit comments