Skip to content

Commit 2060982

Browse files
committedJun 13, 2017
Move LESS/SASS settings to conf.py.sample files
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent ae8cb6e commit 2060982

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎v7/less/conf.py.sample

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Compiler to process LESS files.
2+
LESS_COMPILER = 'lessc'
3+
4+
# A list of options to pass to the LESS compiler.
5+
# Final command is: LESS_COMPILER LESS_OPTIONS file.less
6+
LESS_OPTIONS = []

‎v7/sass/conf.py.sample

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Compiler to process Sass files.
2+
SASS_COMPILER = 'sass'
3+
4+
# A list of options to pass to the Sass compiler.
5+
# Final command is: SASS_COMPILER SASS_OPTIONS file.s(a|c)ss
6+
SASS_OPTIONS = []

0 commit comments

Comments
 (0)
Please sign in to comment.