@remotion/skia 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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/skia"
4
4
  },
5
5
  "name": "@remotion/skia",
6
- "version": "4.0.364",
6
+ "version": "4.0.365",
7
7
  "description": "Include React Native Skia components in a Remotion video",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "url": "https://github.com/remotion-dev/remotion/issues"
22
22
  },
23
23
  "dependencies": {
24
- "remotion": "4.0.364"
24
+ "remotion": "4.0.365"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@shopify/react-native-skia": ">=0.1.191",
@@ -29,14 +29,14 @@
29
29
  "react-dom": ">=16.8.0"
30
30
  },
31
31
  "devDependencies": {
32
- "@remotion/bundler": "4.0.364",
32
+ "@remotion/bundler": "4.0.365",
33
33
  "@shopify/react-native-skia": "2.0.0",
34
34
  "canvaskit-wasm": "0.40.0",
35
35
  "@types/react-native": "^0.69.2",
36
36
  "react": "19.0.0",
37
37
  "react-dom": "19.0.0",
38
- "remotion": "4.0.364",
39
- "@remotion/eslint-config-internal": "4.0.364",
38
+ "remotion": "4.0.365",
39
+ "@remotion/eslint-config-internal": "4.0.365",
40
40
  "eslint": "9.19.0"
41
41
  },
42
42
  "keywords": [
package/bundle.ts DELETED
@@ -1,36 +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 mainModule = await build({
8
- entrypoints: ['src/index.ts'],
9
- naming: '[name].mjs',
10
- external: [
11
- 'react',
12
- 'remotion',
13
- 'remotion/no-react',
14
- 'react/jsx-runtime',
15
- '@shopify/react-native-skia',
16
- ],
17
- });
18
-
19
- const [file] = mainModule.outputs;
20
- const text = await file.text();
21
-
22
- await Bun.write('dist/esm/index.mjs', text);
23
-
24
- const skiaModule = await build({
25
- entrypoints: ['src/enable.ts'],
26
- naming: '[name].mjs',
27
- target: 'node',
28
- external: ['@remotion/bundler', 'canvaskit-wasm/bin/full/canvaskit.wasm'],
29
- });
30
-
31
- const [enableFile] = skiaModule.outputs;
32
- const skiaEnable = await enableFile.text();
33
-
34
- await Bun.write('dist/esm/enable.mjs', skiaEnable);
35
-
36
- export {};
package/eslint.config.mjs DELETED
@@ -1,7 +0,0 @@
1
- import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
-
3
- const config = remotionFlatConfig({react: true});
4
-
5
- export default {
6
- ...config,
7
- };