Skip to content

Commit

Permalink
fully specify paths for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Aug 6, 2022
1 parent a12f257 commit 6315110
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.5",
"concurrently": "^5.3.0",
"envisage": "^0.0.1",
"envisage": "^0.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
Expand Down
6 changes: 3 additions & 3 deletions src/georaster-layer-for-leaflet.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* global proj4 */
import "regenerator-runtime/runtime";
import "regenerator-runtime/runtime.js";
import * as L from "leaflet";
import chroma from "chroma-js";
import geocanvas from "geocanvas";
import { rawToRgb } from "pixel-utils";
import isUTM from "utm-utils/src/isUTM";
import getProjString from "utm-utils/src/getProjString";
import isUTM from "utm-utils/src/isUTM.js";
import getProjString from "utm-utils/src/getProjString.js";
import type { Coords, DoneCallback, LatLngBounds, LatLngTuple } from "leaflet";
import proj4FullyLoaded from "proj4-fully-loaded";
import { GeoExtent } from "geo-extent";
Expand Down
4 changes: 2 additions & 2 deletions src/types/declarations.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "utm-utils/src/isUTM";
declare module "utm-utils/src/getProjString";
declare module "utm-utils/src/isUTM.js";
declare module "utm-utils/src/getProjString.js";
declare module "proj4-fully-loaded";
declare module "geocanvas";
declare module "geo-extent";
Expand Down

0 comments on commit 6315110

Please sign in to comment.