Skip to content

Commit 44c4345

Browse files
authored
Merge branch 'master' into master
2 parents e6ea2c1 + 37cd1fc commit 44c4345

27 files changed

Lines changed: 346 additions & 113 deletions

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
strategy:
21+
fail-fast: false
2122
matrix:
22-
node-version: [18.x, 20.x, 22.x, 24.x]
23+
node-version: [18.x, 20.x, 22.x, 24.x, 26.x]
2324

2425
steps:
2526
- name: Checkout

.github/workflows/prerelease.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
node:
19-
- 20
19+
- 26
2020
platform:
2121
- ubuntu-latest
2222
name: "${{matrix.platform}} / Node.js ${{ matrix.node }}"

.gitignore

Lines changed: 10 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,16 @@
1-
.rpt2_cache
1+
# our build directories
22
packages/*/dist
3-
main.js
4-
main.es.js
5-
main.mjs
6-
main.min.js
7-
index.mjs
8-
*.min.js
9-
*.es5.js
10-
.esm-cache
11-
package-lock.json
12-
env
13-
.nyc_output
14-
lib-cov
15-
*.seed
16-
*.log
17-
*.csv
18-
*.dat
19-
*.out
20-
*.pid
21-
.idea/*
22-
types.js
23-
.DS_Store
24-
types.d.ts
25-
26-
pids
27-
logs
28-
results
29-
30-
npm-debug.log*
313

4+
# pnpm-specific
325
node_modules
6+
pnpm-debug.log*
337

8+
# build caches
9+
.nx
10+
11+
# editor-specific
3412
.vscode
13+
.idea
3514

36-
.nx/
37-
.cursor/rules/nx-rules.mdc
38-
.github/instructions/nx.instructions.md
15+
# os-specific
16+
.DS_Store

packages/turf-buffer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"devDependencies": {
6262
"@turf/truncate": "workspace:*",
6363
"@types/benchmark": "catalog:",
64-
"@types/d3-geo": "^3.1.0",
64+
"@types/d3-geo": "^2.0.7",
6565
"@types/tape": "catalog:",
6666
"benchmark": "catalog:",
6767
"load-json-file": "^7.0.1",
@@ -80,7 +80,7 @@
8080
"@turf/meta": "workspace:*",
8181
"@turf/projection": "workspace:*",
8282
"@types/geojson": "catalog:",
83-
"d3-geo": "^3.1.1",
83+
"d3-geo": "^2.0.2",
8484
"tslib": "catalog:"
8585
}
8686
}

packages/turf-tesselate/earcut.d.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/turf-tesselate/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
},
7070
"dependencies": {
7171
"@turf/helpers": "workspace:*",
72+
"@types/earcut": "^2.1.4",
7273
"@types/geojson": "catalog:",
7374
"earcut": "^2.2.4",
7475
"tslib": "catalog:"

packages/turf/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
test.example.js
2+
turf.min.js

pnpm-lock.yaml

Lines changed: 78 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
packages:
22
- "packages/*"
3+
- "test/*"
34

45
catalog:
56
"@types/benchmark": ^2.1.5

0 commit comments

Comments
 (0)