Skip to content

Commit

Permalink
Feat/adding mp3 file extension handling (#264)
Browse files Browse the repository at this point in the history
* feat: add mp3 file extension conversion

* feat: bump package version
  • Loading branch information
gabrielforster committed May 3, 2024
1 parent 572ec45 commit e30d09a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adapcon-utils-js",
"version": "1.4.1",
"version": "1.4.2",
"description": "Utils library for Javascript",
"keywords": [],
"author": {
Expand Down
1 change: 1 addition & 0 deletions src/files/extensions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export enum FILE_EXTENSIONS {
'video/mp4' = 'mp4',
'audio/ogg; codecs=opus' = 'ogg',
'audio/mpeg' = 'mp3',
'image/gif' = 'gif',
'image/jpeg' = 'jpg',
'image/svg+xml' = 'svg',
Expand Down

0 comments on commit e30d09a

Please sign in to comment.