@remotion/noise 4.0.423 → 4.0.424

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/dist/cjs/index.js CHANGED
@@ -63,5 +63,7 @@ exports.noise3D = noise3D;
63
63
  * @description Creates 4D noise.
64
64
  * @see [Documentation](https://www.remotion.dev/docs/noise/noise-4d)
65
65
  */
66
- const noise4D = (seed, x, y, z, w) => generate4DNoise((0, remotion_1.random)(seed))(x, y, z, w);
66
+ const noise4D = (seed, x, y, z, w
67
+ // eslint-disable-next-line max-params
68
+ ) => generate4DNoise((0, remotion_1.random)(seed))(x, y, z, w);
67
69
  exports.noise4D = noise4D;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/noise"
4
4
  },
5
5
  "name": "@remotion/noise",
6
- "version": "4.0.423",
6
+ "version": "4.0.424",
7
7
  "description": "Noise generation functions",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "scripts": {
13
13
  "formatting": "prettier --experimental-cli src --check",
14
14
  "lint": "eslint src",
15
- "make": "tsc -d && bun --env-file=../.env.bundle bundle.ts",
15
+ "make": "tsgo -d && bun --env-file=../.env.bundle bundle.ts",
16
16
  "test": "bun test src"
17
17
  },
18
18
  "exports": {
@@ -35,12 +35,13 @@
35
35
  "url": "https://github.com/remotion-dev/remotion/issues"
36
36
  },
37
37
  "dependencies": {
38
- "remotion": "4.0.423",
38
+ "remotion": "4.0.424",
39
39
  "simplex-noise": "4.0.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@remotion/eslint-config-internal": "4.0.423",
43
- "eslint": "9.19.0"
42
+ "@remotion/eslint-config-internal": "4.0.424",
43
+ "eslint": "9.19.0",
44
+ "@typescript/native-preview": "7.0.0-dev.20260217.1"
44
45
  },
45
46
  "keywords": [
46
47
  "remotion",