Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .monorepolint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ export default {
devDependencies: {
benchmark: "^2.1.4",
tape: "^5.9.0",
tsup: "^8.4.0",
tsx: "^4.19.4",
tsup: "^8.5.1",
tsx: "^4.21.0",
},
},
includePackages: [...TS_PACKAGES, ...JS_PACKAGES],
Expand All @@ -250,7 +250,7 @@ export default {
devDependencies: {
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
typescript: "^5.8.3",
typescript: "^5.9.3",
},
},
includePackages: TS_PACKAGES,
Expand All @@ -268,7 +268,7 @@ export default {
requireDependency({
options: {
dependencies: {
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
},
},
includePackages: [MAIN_PACKAGE, ...TS_PACKAGES, ...JS_PACKAGES],
Expand Down
2 changes: 2 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export default tsEslint.config(
"no-redeclare": "off",
"no-var": "off",
"prefer-const": "off",
"no-useless-assignment": "off", // the remaning errors here require more thought to clean up
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "fix" is to go from let x = 0 to just let x (or similar). There's <10 errors from this, but I'm afraid to make those changes without thinking about things more closely.

},
},
{
Expand All @@ -54,6 +55,7 @@ export default tsEslint.config(
rules: {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unused-expressions": "off",
"no-useless-assignment": "off",
},
},
{
Expand Down
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,38 +30,38 @@
},
"packageManager": "pnpm@10.10.0+sha256.fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@monorepolint/cli": "0.5.0",
"@monorepolint/config": "0.5.0",
"@monorepolint/core": "0.5.0",
"@monorepolint/rules": "0.5.0",
"@types/node": "22.15.3",
"acorn": "^8.14.1",
"camelcase": "^8.0.0",
"d3-queue": "*",
"decamelize": "^6.0.0",
"dependency-tree": "^11.1.1",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@monorepolint/cli": "0.6.0-alpha.5",
"@monorepolint/config": "0.6.0-alpha.6",
"@monorepolint/core": "0.6.0-alpha.6",
"@monorepolint/rules": "0.6.0-alpha.6",
"@types/node": "25.3.2",
"acorn": "^8.16.0",
"camelcase": "^9.0.0",
"d3-queue": "^3.0.7",
"decamelize": "^6.0.1",
"dependency-tree": "^11.3.0",
"documentation": "^14.0.3",
"es-check": "^9.0.0",
"eslint": "^9.31.0",
"es-check": "^9.6.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-prettier": "^5.5.5",
"esm": "^3.2.25",
"fs-extra": "^11.3.0",
"glob": "^11.1.0",
"globals": "^16.0.0",
"fs-extra": "^11.3.3",
"glob": "^13.0.6",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lerna": "^9.0.3",
"lint-staged": "^15.5.1",
"lerna": "^9.0.4",
"lint-staged": "^16.2.7",
"load-json-file": "^7.0.1",
"meow": "^13.2.0",
"prettier": "^3.5.3",
"meow": "^14.1.0",
"prettier": "^3.8.1",
"progress": "^2.0.3",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"yamljs": "^0.3.0"
}
}
8 changes: 4 additions & 4 deletions packages/turf-along/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/bearing": "workspace:*",
"@turf/destination": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
12 changes: 6 additions & 6 deletions packages/turf-angle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,20 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"glob": "^11.1.0",
"glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bearing": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/rhumb-bearing": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-area/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-bbox-clip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
8 changes: 4 additions & 4 deletions packages/turf-bbox-polygon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
8 changes: 4 additions & 4 deletions packages/turf-bbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-bearing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-bezier-spline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-boolean-clockwise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"glob": "^11.1.0",
"glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
10 changes: 5 additions & 5 deletions packages/turf-boolean-concave/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"glob": "^11.1.0",
"glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
14 changes: 7 additions & 7 deletions packages/turf-boolean-contains/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"boolean-jsts": "*",
"boolean-shapely": "*",
"glob": "^11.1.0",
"boolean-jsts": "^0.0.1",
"boolean-shapely": "^0.1.2",
"glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
Expand All @@ -75,7 +75,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/line-split": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
12 changes: 6 additions & 6 deletions packages/turf-boolean-crosses/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"boolean-shapely": "*",
"glob": "^11.1.0",
"boolean-shapely": "^0.1.2",
"glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-equal": "workspace:*",
Expand All @@ -74,7 +74,7 @@
"@turf/invariant": "workspace:*",
"@turf/line-intersect": "workspace:*",
"@turf/polygon-to-line": "workspace:*",
"@types/geojson": "^7946.0.10",
"@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
Loading
Loading