RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
@zohodesk/react-cli
Versions diffs
1.1.24-exp.1 → 1.1.25
@zohodesk/react-cli 1.1.24-exp.1 → 1.1.25
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (4)
hide
show
package/README.md
+4
-0
package/lib/configs/webpack.prod.config.js
+1
-1
package/lib/utils/getFileType.js
+1
-1
package/package.json
+1
-1
package/README.md
CHANGED
Viewed
@@ -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.
package/lib/configs/webpack.prod.config.js
CHANGED
Viewed
@@ -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: {
package/lib/utils/getFileType.js
CHANGED
Viewed
@@ -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
Viewed
@@ -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",