@remotion/transitions 4.0.226 → 4.0.227

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.
Files changed (2) hide show
  1. package/eslint.config.mjs +7 -0
  2. package/package.json +10 -8
@@ -0,0 +1,7 @@
1
+ import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
+
3
+ const config = remotionFlatConfig({react: true});
4
+
5
+ export default {
6
+ ...config,
7
+ };
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.226",
6
+ "version": "4.0.227",
7
7
  "description": "Library for creating transitions in Remotion",
8
8
  "sideEffects": false,
9
9
  "main": "dist/esm/index.mjs",
@@ -16,17 +16,19 @@
16
16
  "url": "https://github.com/remotion-dev/remotion/issues"
17
17
  },
18
18
  "dependencies": {
19
- "remotion": "4.0.226",
20
- "@remotion/shapes": "4.0.226",
21
- "@remotion/paths": "4.0.226"
19
+ "remotion": "4.0.227",
20
+ "@remotion/paths": "4.0.227",
21
+ "@remotion/shapes": "4.0.227"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@happy-dom/global-registrator": "14.5.1",
25
25
  "react": "18.3.1",
26
26
  "react-dom": "18.3.1",
27
27
  "@vitejs/plugin-react": "^2.0.0",
28
- "remotion": "4.0.226",
29
- "@remotion/test-utils": "4.0.226"
28
+ "eslint": "9.14.0",
29
+ "remotion": "4.0.227",
30
+ "@remotion/test-utils": "4.0.227",
31
+ "@remotion/eslint-config-internal": "4.0.227"
30
32
  },
31
33
  "peerDependencies": {
32
34
  "react": ">=16.8.0",
@@ -109,8 +111,8 @@
109
111
  "homepage": "https://www.remotion.dev/transitions",
110
112
  "scripts": {
111
113
  "test": "bun test src",
112
- "lint": "eslint src --ext ts,tsx",
114
+ "lint": "eslint src",
113
115
  "formatting": "prettier src --check",
114
- "make": "bun --env-file=../.env.bundle bundle.ts"
116
+ "make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
115
117
  }
116
118
  }