Skip to content

Commit

Permalink
Update web dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Sep 4, 2024
1 parent 617e48a commit fdb9cdb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
11 changes: 6 additions & 5 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"chart.js": "^4.4.2",
"chartjs-plugin-dragdata": "^2.2.5",
"pmtiles": "^3.0.4",
"svelte-maplibre": "^0.9.7",
"svelte-maplibre": "^0.9.13",
"svelte-utils": "github:a-b-street/svelte-utils"
}
}
5 changes: 2 additions & 3 deletions web/src/EdgeCostApp.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,14 @@
import CostFunction from "./CostFunction.svelte";
import Header from "./Header.svelte";
import Layout from "./Layout.svelte";
import { Popup, makeColorRamp } from "svelte-utils/map";
import {
Popup,
Loading,
SequentialLegend,
Legend,
OverpassSelector,
PropertiesTable,
makeColorRamp,
} from "svelte-utils";
import { OverpassSelector } from "svelte-utils/overpass";
onMount(async () => {
await init();
Expand Down
3 changes: 2 additions & 1 deletion web/src/InteractiveApp.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
import Header from "./Header.svelte";
import Layers from "./Layers.svelte";
import Layout from "./Layout.svelte";
import { Loading, OverpassSelector } from "svelte-utils";
import { Loading } from "svelte-utils";
import { OverpassSelector } from "svelte-utils/overpass";
import SidebarControls from "./SidebarControls.svelte";
onMount(async () => {
Expand Down
3 changes: 2 additions & 1 deletion web/src/Layers.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
colors,
type LayersControls,
} from "./common";
import { makeColorRamp, Popup, PropertiesTable } from "svelte-utils";
import { PropertiesTable } from "svelte-utils";
import { makeColorRamp, Popup } from "svelte-utils/map";
import {
showSlope,
showDestinations,
Expand Down
2 changes: 1 addition & 1 deletion web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
/**
* Typecheck JS in `.svelte` and `.js` files by default.
Expand Down

0 comments on commit fdb9cdb

Please sign in to comment.