@remotion/media-utils 4.0.225 → 4.0.227
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.
|
@@ -10,7 +10,7 @@ async function fetchWithTimeout(url, options, timeout = 3000) {
|
|
|
10
10
|
clearTimeout(id);
|
|
11
11
|
return response;
|
|
12
12
|
}
|
|
13
|
-
catch (
|
|
13
|
+
catch (_a) {
|
|
14
14
|
clearTimeout(id);
|
|
15
15
|
throw new Error(`Fetch timed out after ${timeout}ms`);
|
|
16
16
|
}
|
|
@@ -31,7 +31,7 @@ const checkFor404OrSkip = async ({ suspecting404, sameOrigin, src, }) => {
|
|
|
31
31
|
try {
|
|
32
32
|
return await checkFor404(src);
|
|
33
33
|
}
|
|
34
|
-
catch (
|
|
34
|
+
catch (_a) {
|
|
35
35
|
return Promise.resolve(null);
|
|
36
36
|
}
|
|
37
37
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/media-utils"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/media-utils",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.227",
|
|
7
7
|
"description": "Utilities for working with media files",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -13,12 +13,16 @@
|
|
|
13
13
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"remotion": "4.0.
|
|
16
|
+
"remotion": "4.0.227"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"react": ">=16.8.0",
|
|
20
20
|
"react-dom": ">=16.8.0"
|
|
21
21
|
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"eslint": "9.14.0",
|
|
24
|
+
"@remotion/eslint-config-internal": "4.0.227"
|
|
25
|
+
},
|
|
22
26
|
"keywords": [
|
|
23
27
|
"remotion",
|
|
24
28
|
"ffmpeg",
|
|
@@ -32,6 +36,7 @@
|
|
|
32
36
|
"homepage": "https://www.remotion.dev/docs/media-utils",
|
|
33
37
|
"scripts": {
|
|
34
38
|
"formatting": "prettier src --check",
|
|
35
|
-
"lint": "eslint src
|
|
39
|
+
"lint": "eslint src",
|
|
40
|
+
"make": "tsc -d"
|
|
36
41
|
}
|
|
37
42
|
}
|