@zohodesk/react-cli 1.1.24-exp.1 → 1.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,6 +44,10 @@ Now to run app
44
44
 
45
45
  # Change Logs
46
46
 
47
+ # 1.1.25 (12-08-2024)
48
+
49
+ - mp3 files support added
50
+
47
51
  # 1.1.24 (29-06-2024)
48
52
 
49
53
  - Worker loading logic fixes.
@@ -223,7 +223,7 @@ module.exports = {
223
223
  }
224
224
  }]
225
225
  }, {
226
- test: /\.ogg$/,
226
+ test: /\.ogg|\.mp3$/,
227
227
  use: [{
228
228
  loader: 'file-loader',
229
229
  options: {
@@ -45,5 +45,5 @@ function isVideoFileExt(ext) {
45
45
  }
46
46
 
47
47
  function isAudioFileExt(ext) {
48
- return ext === '.ogg';
48
+ return ext === '.ogg' || ext === '.mp3';
49
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/react-cli",
3
- "version": "1.1.24-exp.1",
3
+ "version": "1.1.25",
4
4
  "description": "A CLI tool for build modern web application and libraries",
5
5
  "scripts": {
6
6
  "init": "node ./lib/utils/init.js",