@turf/boolean-intersects 7.0.0-alpha.0 → 7.0.0-alpha.2
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/README.md +1 -1
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Boolean-intersects returns (TRUE) two geometries intersect.
|
|
|
14
14
|
### Examples
|
|
15
15
|
|
|
16
16
|
```javascript
|
|
17
|
-
var point = turf.point([
|
|
17
|
+
var point = turf.point([1, 2]);
|
|
18
18
|
var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);
|
|
19
19
|
|
|
20
20
|
turf.booleanIntersects(line, point);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/boolean-intersects",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.2",
|
|
4
4
|
"description": "turf boolean-intersects module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"contributors": [
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|
|
33
33
|
".": {
|
|
34
|
+
"types": "./dist/js/index.d.ts",
|
|
34
35
|
"import": "./dist/es/index.js",
|
|
35
36
|
"require": "./dist/js/index.js"
|
|
36
37
|
}
|
|
@@ -41,13 +42,13 @@
|
|
|
41
42
|
"dist"
|
|
42
43
|
],
|
|
43
44
|
"scripts": {
|
|
44
|
-
"bench": "
|
|
45
|
+
"bench": "tsx bench.js",
|
|
45
46
|
"build": "npm-run-all build:*",
|
|
46
47
|
"build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
|
|
47
48
|
"build:js": "tsc",
|
|
48
|
-
"docs": "
|
|
49
|
+
"docs": "tsx ../../scripts/generate-readmes",
|
|
49
50
|
"test": "npm-run-all test:*",
|
|
50
|
-
"test:tape": "
|
|
51
|
+
"test:tape": "tsx test.js"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"@types/tape": "*",
|
|
@@ -56,15 +57,15 @@
|
|
|
56
57
|
"load-json-file": "*",
|
|
57
58
|
"npm-run-all": "*",
|
|
58
59
|
"tape": "*",
|
|
59
|
-
"ts-node": "*",
|
|
60
60
|
"tslint": "*",
|
|
61
|
+
"tsx": "*",
|
|
61
62
|
"typescript": "*"
|
|
62
63
|
},
|
|
63
64
|
"dependencies": {
|
|
64
|
-
"@turf/boolean-disjoint": "^7.0.0-alpha.
|
|
65
|
-
"@turf/helpers": "^7.0.0-alpha.
|
|
66
|
-
"@turf/meta": "^7.0.0-alpha.
|
|
65
|
+
"@turf/boolean-disjoint": "^7.0.0-alpha.2",
|
|
66
|
+
"@turf/helpers": "^7.0.0-alpha.2",
|
|
67
|
+
"@turf/meta": "^7.0.0-alpha.2",
|
|
67
68
|
"tslib": "^2.3.0"
|
|
68
69
|
},
|
|
69
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "dd35b52725945b4fa29a98d9a550733e06cc222e"
|
|
70
71
|
}
|