Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
0de0fbb9
Commit
0de0fbb9
authored
9 years ago
by
Ned Batchelder
Browse files
Options
Downloads
Plain Diff
Merge pull request #9519 from edx/ned/sass-import-dot
Add current directory to the sass compilation path.
parents
3c8dbe77
5a3b69ba
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pavelib/assets.py
+7
-1
7 additions, 1 deletion
pavelib/assets.py
pavelib/paver_tests/test_servers.py
+1
-1
1 addition, 1 deletion
pavelib/paver_tests/test_servers.py
with
8 additions
and
2 deletions
pavelib/assets.py
+
7
−
1
View file @
0de0fbb9
...
...
@@ -132,7 +132,10 @@ def compile_coffeescript(*files):
@task
@no_help
@cmdopts
([(
'
debug
'
,
'
d
'
,
'
Debug mode
'
)])
@cmdopts
([
(
'
debug
'
,
'
d
'
,
'
Debug mode
'
),
(
'
force
'
,
''
,
'
Force full compilation
'
),
])
def
compile_sass
(
options
):
"""
Compile Sass to CSS.
...
...
@@ -146,6 +149,9 @@ def compile_sass(options):
parts
.
append
(
"
--sourcemap
"
)
else
:
parts
.
append
(
"
--style compressed --quiet
"
)
if
options
.
get
(
'
force
'
):
parts
.
append
(
"
--force
"
)
parts
.
append
(
"
--load-path .
"
)
for
load_path
in
SASS_LOAD_PATHS
+
SASS_DIRS
.
keys
():
parts
.
append
(
"
--load-path {path}
"
.
format
(
path
=
load_path
))
...
...
This diff is collapsed.
Click to expand it.
pavelib/paver_tests/test_servers.py
+
1
−
1
View file @
0de0fbb9
...
...
@@ -12,7 +12,7 @@ EXPECTED_COFFEE_COMMAND = (
)
EXPECTED_SASS_COMMAND
=
(
"
sass --update --cache-location /tmp/sass-cache --default-encoding utf-8 --style compressed
"
"
--quiet --load-path common/static --load-path common/static/sass
"
"
--quiet --load-path
. --load-path
common/static --load-path common/static/sass
"
"
--load-path lms/static/sass --load-path lms/static/certificates/sass
"
"
--load-path cms/static/sass --load-path common/static/sass
"
"
lms/static/sass:lms/static/css lms/static/certificates/sass:lms/static/certificates/css
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment