Changes between Initial Version and Version 1 of Ticket #33494


Ignore:
Timestamp:
Feb 5, 2022, 7:56:40 AM (2 years ago)
Author:
Felix Kleinekathöfer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33494 – Description

    initial v1  
    5252I can't find a note on the migration docs that sourceFileMappingURLs need to be changed, so I suspect this being a bug.
    5353
     54I think this RegEx is the problem: https://github.com/django/django/blob/main/django/contrib/staticfiles/storage.py#L61.
     55The "matched" group matches nothing. It should be something like
     56{{{
     57(?m)(?P<matched>[\s\S]*)^(//# (?-i:sourceMappingURL)=(?P<url>.*))$
     58}}}
     59maybe. I also do not see any sourceMappingURL support for css. Has it been removed?
     60
     61
    5462Source: https://github.com/SpongePowered/SpongeAuth/pull/926
Back to Top