@remotion/cloudrun 4.0.285 → 4.0.286
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 +1 -1
- package/dist/cli/log.d.ts +6 -6
- package/dist/shared/get-etag.js +4 -1
- package/dist/shared/read-dir.js +17 -7
- package/package.json +7 -7
package/.turbo/turbo-make.log
CHANGED
package/dist/cli/log.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const Log: {
|
|
2
|
-
trace: (options: import("@remotion/renderer
|
|
2
|
+
trace: (options: import("@remotion/renderer").LogOptions & {
|
|
3
3
|
tag?: string;
|
|
4
|
-
}, ...
|
|
4
|
+
}, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
5
5
|
verbose: (options: import("@remotion/renderer").LogOptions & {
|
|
6
6
|
tag?: string;
|
|
7
|
-
}, ...
|
|
8
|
-
info: (options: import("@remotion/renderer").LogOptions, ...
|
|
9
|
-
warn: (options: import("@remotion/renderer").LogOptions, ...
|
|
7
|
+
}, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
8
|
+
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
9
|
+
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
10
10
|
error: (options: import("@remotion/renderer").LogOptions & {
|
|
11
11
|
tag?: string;
|
|
12
|
-
}, ...
|
|
12
|
+
}, message?: any, ...optionalParams: any[]) => boolean | void;
|
|
13
13
|
};
|
package/dist/shared/get-etag.js
CHANGED
|
@@ -6,7 +6,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.getEtagOfFile = void 0;
|
|
7
7
|
const crypto_1 = __importDefault(require("crypto"));
|
|
8
8
|
const fs_1 = __importDefault(require("fs"));
|
|
9
|
-
const md5 = (data) => crypto_1.default
|
|
9
|
+
const md5 = (data) => crypto_1.default
|
|
10
|
+
.createHash('md5')
|
|
11
|
+
.update(data)
|
|
12
|
+
.digest('hex');
|
|
10
13
|
const getEtagOfFile = async (filePath) => {
|
|
11
14
|
const stream = await fs_1.default.promises.readFile(filePath);
|
|
12
15
|
return md5(stream);
|
package/dist/shared/read-dir.js
CHANGED
|
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
36
|
exports.readDirectory = readDirectory;
|
|
27
37
|
const fs = __importStar(require("fs"));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cloudrun",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.286",
|
|
7
7
|
"description": "Render Remotion videos on Google Cloud Run",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -16,16 +16,16 @@
|
|
|
16
16
|
"@google-cloud/logging": "11.2.0",
|
|
17
17
|
"google-auth-library": "8.7.0",
|
|
18
18
|
"zod": "3.22.3",
|
|
19
|
-
"@remotion/bundler": "4.0.
|
|
20
|
-
"@remotion/
|
|
21
|
-
"@remotion/
|
|
22
|
-
"remotion": "4.0.
|
|
19
|
+
"@remotion/bundler": "4.0.286",
|
|
20
|
+
"@remotion/cli": "4.0.286",
|
|
21
|
+
"@remotion/renderer": "4.0.286",
|
|
22
|
+
"remotion": "4.0.286"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/minimist": "1.2.2",
|
|
26
26
|
"eslint": "9.19.0",
|
|
27
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
28
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
27
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.286",
|
|
28
|
+
"@remotion/eslint-config-internal": "4.0.286"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
31
31
|
"./package.json": "./package.json",
|