Skip to content

Commit

Permalink
geolib import fix for correct tree shaking
Browse files Browse the repository at this point in the history
  • Loading branch information
catarizea committed Mar 4, 2024
1 parent b42382e commit baf7bd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"db:studio": "drizzle-kit studio --config=drizzle.config.ts --port=3001",
"db:speedtest:algolia": "bun ./src/utils/speedTests/algoliaGeoTest.ts",
"db:speedtest:pscale": "bun ./src/utils/speedTests/pscaleGeoTest.ts",
"dev": "bun --hot index.ts",
"debug": "bun --inspect index.ts",
"dev": "dotenv -e .env.dev -- bun --hot index.ts",
"debug": "dotenv -e .env.dev -- bun --inspect index.ts",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"move:up": "bun ./src/utils/tools/moveEnv.ts move up",
"move:down": "bun ./src/utils/tools/moveEnv.ts move down",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/tools/getBoundingBox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import getBoundsOfDistance from 'geolib/es/getBoundsOfDistance';
import { getBoundsOfDistance } from 'geolib';

import { Point } from '@/types';

Expand Down

0 comments on commit baf7bd0

Please sign in to comment.