@remotion/paths 3.3.31 → 3.3.32

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/paths",
3
- "version": "3.3.31",
3
+ "version": "3.3.32",
4
4
  "description": "Utility functions for SVG paths",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "4b89462c98236d59641272bd0649d880514e685f"
38
+ "gitHead": "6b4f3514c801ddf2e7f957dd2e633271fbbc75f6"
39
39
  }
package/.prettierrc.js DELETED
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- singleQuote: true,
3
- bracketSpacing: false,
4
- useTabs: true,
5
- overrides: [
6
- {
7
- files: ['*.yml'],
8
- options: {
9
- singleQuote: false,
10
- },
11
- },
12
- ],
13
- plugins: [require.resolve('prettier-plugin-organize-imports')],
14
- };
@@ -1,6 +0,0 @@
1
- /**
2
- * Splits a valid SVG path into it's parts.
3
- * @param {string} path A valid SVG path
4
- * @link https://remotion.dev/docs/paths/split-parts
5
- */
6
- export declare const splitParts: (path: string) => string[];
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.splitParts = void 0;
4
- const construct_1 = require("./helpers/construct");
5
- /**
6
- * Splits a valid SVG path into it's parts.
7
- * @param {string} path A valid SVG path
8
- * @link https://remotion.dev/docs/paths/split-parts
9
- */
10
- const splitParts = (path) => {
11
- const { segments } = (0, construct_1.construct)(path);
12
- return segments
13
- .map((seg) => {
14
- return seg.map((s) => s.join(' '));
15
- })
16
- .map((_s) => _s.join(' '));
17
- };
18
- exports.splitParts = splitParts;
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "../tsconfig.settings.json",
3
- "compilerOptions": {
4
- "composite": true,
5
- "rootDir": "src",
6
- "outDir": "dist"
7
- },
8
- "include": ["src"]
9
- }