Compare commits

...

2 Commits

Author SHA1 Message Date
4e9ceb4f8e 2.0.4 2024-11-18 15:04:07 +01:00
8f4bc779e2 fix(core): Documentation and test coverage updates 2024-11-18 15:04:07 +01:00
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 2024-11-18 - 2.0.4 - fix(core)
Documentation and test coverage updates
- Comprehensive examples added to readme.md.
- Expanded test coverage for mime type detection.
## 2024-11-18 - 2.0.3 - fix(core) ## 2024-11-18 - 2.0.3 - fix(core)
Update dependencies and optimize type imports Update dependencies and optimize type imports

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartmime", "name": "@push.rocks/smartmime",
"version": "2.0.3", "version": "2.0.4",
"private": false, "private": false,
"description": "A module for detecting MIME types with support for binary and text file distinctions.", "description": "A module for detecting MIME types with support for binary and text file distinctions.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartmime', name: '@push.rocks/smartmime',
version: '2.0.3', version: '2.0.4',
description: 'A module for detecting MIME types with support for binary and text file distinctions.' description: 'A module for detecting MIME types with support for binary and text file distinctions.'
} }