@remotion/cli 4.0.106 → 4.0.107
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.
|
@@ -11,4 +11,4 @@ export declare const getGitRemoteOrigin: (gitConfig: string) => {
|
|
|
11
11
|
} | null;
|
|
12
12
|
export declare const normalizeGitRemoteUrl: (url: string) => ParsedGitRemote | null;
|
|
13
13
|
export declare const getGifRef: () => string | null;
|
|
14
|
-
export declare const getGitSource: (remotionRoot: string
|
|
14
|
+
export declare const getGitSource: (remotionRoot: string) => GitSource | null;
|
|
@@ -109,7 +109,8 @@ const getFromEnvVariables = () => {
|
|
|
109
109
|
return null;
|
|
110
110
|
};
|
|
111
111
|
const getGitSource = (remotionRoot) => {
|
|
112
|
-
|
|
112
|
+
const fromEnv = getFromEnvVariables();
|
|
113
|
+
if (fromEnv) {
|
|
113
114
|
return getFromEnvVariables();
|
|
114
115
|
}
|
|
115
116
|
const ref = (0, exports.getGifRef)();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.107",
|
|
4
4
|
"description": "CLI for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"dotenv": "9.0.2",
|
|
32
32
|
"minimist": "1.2.6",
|
|
33
33
|
"prompts": "2.4.2",
|
|
34
|
-
"@remotion/
|
|
35
|
-
"@remotion/
|
|
36
|
-
"@remotion/studio
|
|
37
|
-
"@remotion/
|
|
38
|
-
"remotion": "4.0.
|
|
39
|
-
"
|
|
40
|
-
"@remotion/
|
|
34
|
+
"@remotion/bundler": "4.0.107",
|
|
35
|
+
"@remotion/media-utils": "4.0.107",
|
|
36
|
+
"@remotion/studio": "4.0.107",
|
|
37
|
+
"@remotion/renderer": "4.0.107",
|
|
38
|
+
"@remotion/studio-server": "4.0.107",
|
|
39
|
+
"remotion": "4.0.107",
|
|
40
|
+
"@remotion/player": "4.0.107"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.8.0",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"react-dom": "18.2.0",
|
|
63
63
|
"vitest": "0.31.1",
|
|
64
64
|
"zod": "^3.22.3",
|
|
65
|
-
"@remotion/zod-types": "4.0.
|
|
66
|
-
"@remotion/tailwind": "4.0.
|
|
65
|
+
"@remotion/zod-types": "4.0.107",
|
|
66
|
+
"@remotion/tailwind": "4.0.107"
|
|
67
67
|
},
|
|
68
68
|
"keywords": [
|
|
69
69
|
"remotion",
|