@remotion/gif 4.0.249 → 4.0.250
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/.turbo/turbo-make.log
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveGifSource = void 0;
|
|
4
4
|
const resolveGifSource = (src) => {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
if (typeof window === 'undefined') {
|
|
6
|
+
return src;
|
|
7
|
+
}
|
|
8
|
+
return new URL(src, window.origin).href;
|
|
7
9
|
};
|
|
8
10
|
exports.resolveGifSource = resolveGifSource;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -994,7 +994,10 @@ var isCorsError = (error) => {
|
|
|
994
994
|
|
|
995
995
|
// src/resolve-gif-source.ts
|
|
996
996
|
var resolveGifSource = (src2) => {
|
|
997
|
-
|
|
997
|
+
if (typeof window === "undefined") {
|
|
998
|
+
return src2;
|
|
999
|
+
}
|
|
1000
|
+
return new URL(src2, window.origin).href;
|
|
998
1001
|
};
|
|
999
1002
|
|
|
1000
1003
|
// src/useCurrentGifIndex.tsx
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/gif"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/gif",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.250",
|
|
7
7
|
"description": "Embed GIFs in a Remotion video",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"bugs": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"remotion": "4.0.
|
|
27
|
+
"remotion": "4.0.250"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"esbuild": "0.24.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"react-dom": "19.0.0",
|
|
33
33
|
"webpack": "5.96.1",
|
|
34
34
|
"eslint": "9.14.0",
|
|
35
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
35
|
+
"@remotion/eslint-config-internal": "4.0.250"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=16.8.0",
|