Changes between Initial Version and Version 1 of Ticket #33494
- Timestamp:
- Feb 5, 2022, 7:56:40 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33494 – Description
initial v1 52 52 I can't find a note on the migration docs that sourceFileMappingURLs need to be changed, so I suspect this being a bug. 53 53 54 I think this RegEx is the problem: https://github.com/django/django/blob/main/django/contrib/staticfiles/storage.py#L61. 55 The "matched" group matches nothing. It should be something like 56 {{{ 57 (?m)(?P<matched>[\s\S]*)^(//# (?-i:sourceMappingURL)=(?P<url>.*))$ 58 }}} 59 maybe. I also do not see any sourceMappingURL support for css. Has it been removed? 60 61 54 62 Source: https://github.com/SpongePowered/SpongeAuth/pull/926