@remotion/transitions 4.0.363 → 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 +8 -8
- package/bundle.ts +0 -33
- package/eslint.config.mjs +0 -7
- package/happydom.ts +0 -6
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/transitions"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/transitions",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.365",
|
|
7
7
|
"description": "Library for creating transitions in Remotion",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"main": "dist/esm/index.mjs",
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"remotion": "4.0.
|
|
26
|
-
"@remotion/shapes": "4.0.
|
|
27
|
-
"@remotion/paths": "4.0.
|
|
25
|
+
"remotion": "4.0.365",
|
|
26
|
+
"@remotion/shapes": "4.0.365",
|
|
27
|
+
"@remotion/paths": "4.0.365"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@happy-dom/global-registrator": "14.5.1",
|
|
31
|
-
"remotion": "4.0.
|
|
31
|
+
"remotion": "4.0.365",
|
|
32
32
|
"react": "19.0.0",
|
|
33
33
|
"react-dom": "19.0.0",
|
|
34
|
-
"@remotion/test-utils": "4.0.
|
|
35
|
-
"@remotion/player": "4.0.
|
|
36
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/test-utils": "4.0.365",
|
|
35
|
+
"@remotion/player": "4.0.365",
|
|
36
|
+
"@remotion/eslint-config-internal": "4.0.365",
|
|
37
37
|
"eslint": "9.19.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
package/bundle.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import {build} from 'bun';
|
|
2
|
-
import path from 'path';
|
|
3
|
-
|
|
4
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
5
|
-
throw new Error('This script must be run using NODE_ENV=production');
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
const presentations = ['slide', 'flip', 'wipe', 'fade', 'clock-wipe', 'none', 'iris'];
|
|
9
|
-
|
|
10
|
-
const output = await build({
|
|
11
|
-
entrypoints: [
|
|
12
|
-
'src/index.ts',
|
|
13
|
-
...presentations.map((p) => `src/presentations/${p}.tsx`),
|
|
14
|
-
],
|
|
15
|
-
external: [
|
|
16
|
-
'remotion',
|
|
17
|
-
'remotion/no-react',
|
|
18
|
-
'react',
|
|
19
|
-
'react/jsx-runtime',
|
|
20
|
-
'react/jsx-runtime',
|
|
21
|
-
'react/jsx-dev-runtime',
|
|
22
|
-
'@remotion/paths',
|
|
23
|
-
'@remotion/shapes',
|
|
24
|
-
],
|
|
25
|
-
naming: '[name].mjs',
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
for (const file of output.outputs) {
|
|
29
|
-
const str = await file.text();
|
|
30
|
-
const newStr = str;
|
|
31
|
-
|
|
32
|
-
Bun.write(path.join('dist', 'esm', file.path), newStr);
|
|
33
|
-
}
|
package/eslint.config.mjs
DELETED