Skip to content

Commit

Permalink
Merge 143c935 into 913be07
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed May 20, 2022
2 parents 913be07 + 143c935 commit 646d8eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions HISTORY.md
Expand Up @@ -5,6 +5,7 @@ unreleased
* Add extensions from IANA for more MIME types
* Add new upstream MIME types
* Fix extensions for `text/markdown` to match IANA
* Remove extension `.mjs` from `application/javascript`
* Remove obsolete MIME types from IANA data

1.52.0 / 2022-02-21
Expand Down
3 changes: 2 additions & 1 deletion db.json
Expand Up @@ -735,7 +735,7 @@
"source": "apache",
"charset": "UTF-8",
"compressible": true,
"extensions": ["js","mjs"]
"extensions": ["js"]
},
"application/jf2feed+json": {
"source": "iana",
Expand Down Expand Up @@ -7859,6 +7859,7 @@
},
"text/javascript": {
"source": "iana",
"charset": "UTF-8",
"compressible": true,
"extensions": ["js","mjs"]
},
Expand Down
12 changes: 6 additions & 6 deletions src/custom-types.json
Expand Up @@ -63,11 +63,7 @@
},
"application/javascript": {
"charset": "UTF-8",
"compressible": true,
"extensions": ["mjs"],
"sources": [
"https://tools.ietf.org/html/draft-bfarias-javascript-mjs-00"
]
"compressible": true
},
"application/json": {
"charset": "UTF-8",
Expand Down Expand Up @@ -757,7 +753,11 @@
"extensions": ["jade"]
},
"text/javascript": {
"compressible": true
"charset": "UTF-8",
"compressible": true,
"sources": [
"https://www.rfc-editor.org/rfc/rfc9239"
]
},
"text/jsx": {
"compressible": true,
Expand Down

0 comments on commit 646d8eb

Please sign in to comment.