Changes between Version 4 and Version 5 of Ticket #36236
- Timestamp:
- Mar 9, 2025, 7:57:24 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36236 – Description
v4 v5 1 I have some static vendor files that include commented out map files, which causes a value error on hashing. Since it's commented, shouldn't it be ignored. If not, shouldn't it be ignored if I include `--ignore 'js.map'`. Neither of those happen, which causes an error when trying to use `ManifestStaticFilesStorage`. 1 I have some static vendor files that include commented out map files, which causes a value error on hashing. Since it's commented, shouldn't it be ignored. If not, shouldn't it be ignored if I include `--ignore 'js.map'`. Neither of those happen, which causes an error when trying to use `ManifestStaticFilesStorage`. 2 2 3 3 `//# sourceMappingURL=moment-with-locales.min.js.map` 4 4 `/*# sourceMappingURL=bootstrap.min.css.map */` 5 6 I've run into other fonts or files that are missing in vendor files. If a file is missing during the hashing, can it just be skipped? This is not a linter.. do what is there, don't fail it. 5 7 6 8 ----