Commit ebd61c49 by Jon Dufresne

Add missing ignore_pattern to FileSystemFinder.

Some third party js/css libraries installed through bower, contain
broken references in CSS: url(...). When using PipelineCachedStorage,
this breaks during collectstatic. As with AppDirectoriesFinder, ignore
CSS. CSS is a pielinable content that can be managed through a
pipeline asset.

True, these CSS fixes should be fixed in their respective
projects. Bugs have been filed, but this fix will allow pipeline users
to continue using third party libraries without breaking builds and
deployment.
parent b547fabe
......@@ -77,6 +77,7 @@ class FileSystemFinder(PatternFilterMixin, FileSystemFinder):
"""
ignore_patterns = [
'*.js',
'*.css',
'*.less',
'*.scss',
'*.sh',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment