@remotion/webcodecs 4.0.260 → 4.0.261
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/dist/log.d.ts +5 -5
- package/package.json +5 -5
package/dist/log.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { LogLevel } from '@remotion/media-parser';
|
|
2
2
|
declare const Log: {
|
|
3
|
-
trace: (logLevel: LogLevel,
|
|
4
|
-
verbose: (logLevel: LogLevel,
|
|
5
|
-
info: (logLevel: LogLevel,
|
|
6
|
-
warn: (logLevel: LogLevel,
|
|
7
|
-
error: (
|
|
3
|
+
trace: (logLevel: LogLevel, ...args: Parameters<typeof console.log>) => void;
|
|
4
|
+
verbose: (logLevel: LogLevel, ...args: Parameters<typeof console.log>) => void;
|
|
5
|
+
info: (logLevel: LogLevel, ...args: Parameters<typeof console.log>) => void;
|
|
6
|
+
warn: (logLevel: LogLevel, ...args: Parameters<typeof console.log>) => void;
|
|
7
|
+
error: (...args: Parameters<typeof console.log>) => void;
|
|
8
8
|
};
|
|
9
9
|
export { Log };
|
|
10
10
|
export type { LogLevel };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/webcodecs",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.261",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/esm/index.mjs",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
18
18
|
"license": "Remotion License (See https://remotion.dev/docs/webcodecs#license)",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@remotion/
|
|
21
|
-
"@remotion/
|
|
20
|
+
"@remotion/media-parser": "4.0.261",
|
|
21
|
+
"@remotion/licensing": "4.0.261"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/dom-webcodecs": "0.1.11",
|
|
26
26
|
"eslint": "9.19.0",
|
|
27
|
-
"@remotion/
|
|
28
|
-
"@remotion/
|
|
27
|
+
"@remotion/example-videos": "4.0.261",
|
|
28
|
+
"@remotion/eslint-config-internal": "4.0.261"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [],
|
|
31
31
|
"publishConfig": {
|