@turf/line-slice-along 7.0.0-alpha.111 → 7.0.0-alpha.114

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.
@@ -64,4 +64,4 @@ export {
64
64
  turf_line_slice_along_default as default,
65
65
  lineSliceAlong
66
66
  };
67
- //# sourceMappingURL=index.mjs.map
67
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/line-slice-along",
3
- "version": "7.0.0-alpha.111+08576cb50",
3
+ "version": "7.0.0-alpha.114+e0bdd0add",
4
4
  "description": "turf line-slice-along module",
5
5
  "author": "Turf Authors",
6
6
  "license": "MIT",
@@ -21,27 +21,26 @@
21
21
  "along",
22
22
  "line-slice"
23
23
  ],
24
- "type": "commonjs",
24
+ "type": "module",
25
25
  "main": "dist/cjs/index.cjs",
26
- "module": "dist/esm/index.mjs",
27
- "types": "dist/cjs/index.d.ts",
26
+ "module": "dist/esm/index.js",
27
+ "types": "dist/esm/index.d.ts",
28
28
  "exports": {
29
29
  "./package.json": "./package.json",
30
30
  ".": {
31
31
  "import": {
32
- "types": "./dist/esm/index.d.mts",
33
- "default": "./dist/esm/index.mjs"
32
+ "types": "./dist/esm/index.d.ts",
33
+ "default": "./dist/esm/index.js"
34
34
  },
35
35
  "require": {
36
- "types": "./dist/cjs/index.d.ts",
36
+ "types": "./dist/cjs/index.d.cts",
37
37
  "default": "./dist/cjs/index.cjs"
38
38
  }
39
39
  }
40
40
  },
41
41
  "sideEffects": false,
42
42
  "files": [
43
- "dist",
44
- "index.d.ts"
43
+ "dist"
45
44
  ],
46
45
  "scripts": {
47
46
  "bench": "tsx bench.ts",
@@ -51,8 +50,10 @@
51
50
  "test:tape": "tsx test.ts"
52
51
  },
53
52
  "devDependencies": {
54
- "@turf/along": "^7.0.0-alpha.111+08576cb50",
55
- "@turf/length": "^7.0.0-alpha.111+08576cb50",
53
+ "@turf/along": "^7.0.0-alpha.114+e0bdd0add",
54
+ "@turf/length": "^7.0.0-alpha.114+e0bdd0add",
55
+ "@types/benchmark": "^2.1.5",
56
+ "@types/tape": "^4.2.32",
56
57
  "benchmark": "^2.1.4",
57
58
  "load-json-file": "^7.0.1",
58
59
  "npm-run-all": "^4.1.5",
@@ -61,10 +62,10 @@
61
62
  "tsx": "^4.6.2"
62
63
  },
63
64
  "dependencies": {
64
- "@turf/bearing": "^7.0.0-alpha.111+08576cb50",
65
- "@turf/destination": "^7.0.0-alpha.111+08576cb50",
66
- "@turf/distance": "^7.0.0-alpha.111+08576cb50",
67
- "@turf/helpers": "^7.0.0-alpha.111+08576cb50"
65
+ "@turf/bearing": "^7.0.0-alpha.114+e0bdd0add",
66
+ "@turf/destination": "^7.0.0-alpha.114+e0bdd0add",
67
+ "@turf/distance": "^7.0.0-alpha.114+e0bdd0add",
68
+ "@turf/helpers": "^7.0.0-alpha.114+e0bdd0add"
68
69
  },
69
- "gitHead": "08576cb50376e0199aea02dbd887e3af83672246"
70
+ "gitHead": "e0bdd0add87f21a4430f8884736096d1ac6fe4cd"
70
71
  }
package/index.d.ts DELETED
@@ -1,17 +0,0 @@
1
- import { LineString, Feature } from "geojson";
2
- import { Units } from "@turf/helpers";
3
-
4
- /**
5
- * http://turfjs.org/docs/
6
- */
7
- declare function lineSliceAlong(
8
- line: Feature<LineString> | LineString,
9
- startDist: number,
10
- stopDist: number,
11
- options?: {
12
- units?: Units;
13
- }
14
- ): Feature<LineString>;
15
-
16
- export { lineSliceAlong };
17
- export default lineSliceAlong;
File without changes
File without changes
File without changes