@remotion/three 4.0.364 → 4.0.365
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/package.json +5 -5
- package/bundle.ts +0 -27
- package/eslint.config.mjs +0 -10
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/three"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/three",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.365",
|
|
7
7
|
"description": "Include React Three Fiber components in a Remotion video",
|
|
8
8
|
"main": "dist/cjs/index.js",
|
|
9
9
|
"types": "dist/cjs/index.d.ts",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"remotion": "4.0.
|
|
24
|
+
"remotion": "4.0.365"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@react-three/fiber": ">=8.0.0",
|
|
28
28
|
"react": ">=16.8.0",
|
|
29
29
|
"react-dom": ">=16.8.0",
|
|
30
30
|
"three": ">=0.137.0",
|
|
31
|
-
"remotion": "4.0.
|
|
31
|
+
"remotion": "4.0.365"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@react-three/fiber": "9.2.0",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@types/web": "0.0.166",
|
|
38
38
|
"react": "19.0.0",
|
|
39
39
|
"react-dom": "19.0.0",
|
|
40
|
-
"remotion": "4.0.
|
|
40
|
+
"remotion": "4.0.365",
|
|
41
41
|
"three": "0.178.0",
|
|
42
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
42
|
+
"@remotion/eslint-config-internal": "4.0.365",
|
|
43
43
|
"eslint": "9.19.0"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
package/bundle.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import {build} from 'bun';
|
|
2
|
-
|
|
3
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
4
|
-
throw new Error('This script must be run using NODE_ENV=production');
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
const output = await build({
|
|
8
|
-
entrypoints: ['src/index.ts'],
|
|
9
|
-
naming: '[name].mjs',
|
|
10
|
-
external: [
|
|
11
|
-
'react',
|
|
12
|
-
'remotion',
|
|
13
|
-
'@remotion/media-utils',
|
|
14
|
-
'remotion/no-react',
|
|
15
|
-
'react/jsx-runtime',
|
|
16
|
-
'@react-three/fiber',
|
|
17
|
-
'three/src/textures/VideoTexture.js',
|
|
18
|
-
'three/src/loaders/TextureLoader.js',
|
|
19
|
-
],
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const [file] = output.outputs;
|
|
23
|
-
const text = await file.text();
|
|
24
|
-
|
|
25
|
-
await Bun.write('dist/esm/index.mjs', text);
|
|
26
|
-
|
|
27
|
-
export {};
|