Move points-geometry dependency to organization (#462)

* Move dependency to organization

* Update geo.js

* Update transform.js
This commit is contained in:
valorize 2017-12-20 21:55:54 +01:00 committed by Michael Diego
parent 235cd3d315
commit e344c3c8f4
3 changed files with 3 additions and 3 deletions

View File

@ -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": {

View File

@ -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';

View File

@ -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';