Skip to content

Commit a2f047c

Browse files
author
Andrey Fedoseev
committed
Bugfix: take account of additional compiler options when doing inline compilation with SASS
1 parent 152eb45 commit a2f047c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Dev
1010
- Refactor ``compilestatic`` commmand to ensure that each file is compiled no more than once.
1111
- Add ``include_path`` option to LESS compiler
1212
- 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
1314

1415
1.5
1516
===

static_precompiler/compilers/scss.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def compile_source(self, source):
286286
args = [
287287
self.executable,
288288
"-s",
289-
]
289+
] + self.get_extra_args()
290290
if self.executable.endswith("scss"):
291291
args.append("--sass")
292292

0 commit comments

Comments
 (0)