@remotion/paths 4.0.225 → 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.
@@ -2,7 +2,6 @@
2
2
  // Copied from: https://github.com/rveciana/svg-path-properties
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.binomialCoefficients = exports.cValues = exports.tValues = void 0;
5
- /* eslint-disable @typescript-eslint/no-loss-of-precision */
6
5
  /* eslint-disable no-loss-of-precision */
7
6
  // Legendre-Gauss abscissae (xi values, defined at i=n as the roots of the nth order Legendre polynomial Pn(x))
8
7
  exports.tValues = [
@@ -0,0 +1,7 @@
1
+ import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
+
3
+ const config = remotionFlatConfig({react: false});
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/paths"
4
4
  },
5
5
  "name": "@remotion/paths",
6
- "version": "4.0.225",
6
+ "version": "4.0.227",
7
7
  "description": "Utilities for working with SVG paths",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -17,13 +17,18 @@
17
17
  "path",
18
18
  "utilities"
19
19
  ],
20
+ "devDependencies": {
21
+ "eslint": "9.14.0",
22
+ "@remotion/eslint-config-internal": "4.0.227"
23
+ },
20
24
  "publishConfig": {
21
25
  "access": "public"
22
26
  },
23
27
  "homepage": "https://www.remotion.dev/paths",
24
28
  "scripts": {
25
29
  "formatting": "prettier src --check",
26
- "lint": "eslint src --ext ts,tsx",
27
- "test": "bun test src"
30
+ "lint": "eslint src",
31
+ "test": "bun test src",
32
+ "make": "tsc -d"
28
33
  }
29
34
  }