Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed pointer-geometry dependency to @mapbox/pointer-geometry #437

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,7 +48,7 @@
"dependencies": {
"eventemitter3": "^1.1.0",
"fbjs": "^0.8.3",
"point-geometry": "0.0.0",
"@mapbox/point-geometry": "0.1.0",
"scriptjs": "^2.5.7"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/geo.js
@@ -1,4 +1,4 @@
import Point from 'point-geometry';
import Point from '@mapbox/point-geometry';
import LatLng from './lib_geo/lat_lng';
import Transform from './lib_geo/transform';

Expand Down
2 changes: 1 addition & 1 deletion src/utils/lib_geo/transform.js
@@ -1,5 +1,5 @@
/* eslint-disable class-methods-use-this */
import Point from 'point-geometry';
import Point from '@mapbox/point-geometry';
import LatLng from './lat_lng';
import { wrap } from './wrap';

Expand Down