Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
12f280b6
Commit
12f280b6
authored
Sep 12, 2014
by
Tim Babych
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[TNL-198] Do not generate JS and CSS source maps in production
parent
535e6e4f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
3 deletions
+1
-3
common/static/js/vendor/ova/annotator-full.js
+0
-2
pavelib/assets.py
+1
-1
No files found.
common/static/js/vendor/ova/annotator-full.js
View file @
12f280b6
...
@@ -3371,5 +3371,3 @@ Annotator.prototype.setupPlugins = function(config, options) {
...
@@ -3371,5 +3371,3 @@ Annotator.prototype.setupPlugins = function(config, options) {
/*
/*
//
//
*/
*/
//@ sourceMappingURL=annotator-full.map
pavelib/assets.py
View file @
12f280b6
...
@@ -132,7 +132,7 @@ def compile_sass(debug=False):
...
@@ -132,7 +132,7 @@ def compile_sass(debug=False):
"""
"""
sh
(
cmd
(
sh
(
cmd
(
'sass'
,
''
if
debug
else
'--style compressed'
,
'sass'
,
''
if
debug
else
'--style compressed'
,
"--sourcemap"
,
"--sourcemap"
if
debug
else
''
,
"--cache-location {cache}"
.
format
(
cache
=
SASS_CACHE_PATH
),
"--cache-location {cache}"
.
format
(
cache
=
SASS_CACHE_PATH
),
"--load-path"
,
" "
.
join
(
SASS_LOAD_PATHS
+
THEME_SASS_PATHS
),
"--load-path"
,
" "
.
join
(
SASS_LOAD_PATHS
+
THEME_SASS_PATHS
),
"--update"
,
"-E"
,
"utf-8"
,
" "
.
join
(
SASS_UPDATE_DIRS
+
THEME_SASS_PATHS
),
"--update"
,
"-E"
,
"utf-8"
,
" "
.
join
(
SASS_UPDATE_DIRS
+
THEME_SASS_PATHS
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment