@remotion/gif 4.0.364 → 4.0.366

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/gif"
4
4
  },
5
5
  "name": "@remotion/gif",
6
- "version": "4.0.364",
6
+ "version": "4.0.366",
7
7
  "description": "Embed GIFs in a Remotion video",
8
8
  "sideEffects": false,
9
9
  "bugs": {
@@ -29,14 +29,14 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "remotion": "4.0.364"
32
+ "remotion": "4.0.366"
33
33
  },
34
34
  "devDependencies": {
35
35
  "esbuild": "0.25.0",
36
36
  "react": "19.0.0",
37
37
  "react-dom": "19.0.0",
38
38
  "webpack": "5.96.1",
39
- "@remotion/eslint-config-internal": "4.0.364",
39
+ "@remotion/eslint-config-internal": "4.0.366",
40
40
  "eslint": "9.19.0"
41
41
  },
42
42
  "peerDependencies": {
package/.prettierignore DELETED
@@ -1 +0,0 @@
1
- src/worker/source.ts
@@ -1,4 +0,0 @@
1
-
2
- $ prettier --experimental-cli src --check
3
- [?25l- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ Checking formatting...| Checking formatting.../ Checking formatting...- Checking formatting...\ src/gif-cache.ts| src/gif-cache.ts/ src/resolve-gif-source.ts- src/index.ts\ src/canvas.tsx| src/canvas.tsx/ src/useCurrentGifIndex.tsx- src/useCurrentGifIndex.tsx\ src/gifuct/types.ts| src/get-gif-duration-in-seconds.ts/ src/parser/decompress-frames.ts- src/js-binary-schema-parser/uint8-parser.ts\ src/js-binary-schema-parser/gif.ts| src/js-binary-schema-parser/gif.ts/ src/gifuct/index.ts- src/worker/index.ts\ src/react-tools.ts| src/react-tools.ts/ src/use-element-size.ts- src/preload-gif.ts\ src/GifForDevelopment.tsx| src/GifForDevelopment.tsx/ src/GifForDevelopment.tsx- src/GifForDevelopment.tsx[?25hChecking formatting...
4
- [?25hAll matched files use Prettier code style!
@@ -1,15 +0,0 @@
1
-
2
- $ eslint src
3
- =============
4
-
5
- WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
6
-
7
- You may find that it works just fine, or you may not.
8
-
9
- SUPPORTED TYPESCRIPT VERSIONS: >=4.7.4 <5.7.0
10
-
11
- YOUR TYPESCRIPT VERSION: 5.8.2
12
-
13
- Please only submit bug reports when using the officially supported version.
14
-
15
- =============
@@ -1,2 +0,0 @@
1
-
2
- $ tsc -d && node build.mjs && bun --env-file=../.env.bundle bundle.ts
package/bundle.ts DELETED
@@ -1,18 +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
- target: 'node',
11
- external: ['remotion', 'remotion/no-react', 'react'],
12
- });
13
-
14
- const [file] = output.outputs;
15
- const text = await file.text();
16
- await Bun.write('dist/esm/index.mjs', text);
17
-
18
- export {};
package/eslint.config.mjs DELETED
@@ -1,5 +0,0 @@
1
- import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
-
3
- const config = remotionFlatConfig({react: true});
4
-
5
- export default config;