Skip to content

Commit

Permalink
chore: upgraded bulma to v1 (watergis#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
JinIgarashi committed Apr 13, 2024
1 parent 500f9ad commit b1fc787
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 46 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@
"@watergis/maplibre-center-icon": "^3.0.0",
"@watergis/maplibre-gl-area-switcher": "^1.0.0",
"@watergis/maplibre-gl-tour": "^1.0.4",
"@watergis/svelte-collapsible-panel": "^2.0.0",
"@watergis/svelte-collapsible-panel": "^3.0.0",
"@watergis/svelte-maplibre-attribute-popup": "^3.0.0",
"@watergis/svelte-maplibre-attribute-table": "^2.0.0",
"@watergis/svelte-maplibre-export": "^3.0.0",
"@watergis/svelte-maplibre-legend": "^3.0.0",
"@watergis/svelte-maplibre-attribute-table": "^3.0.0",
"@watergis/svelte-maplibre-export": "^4.0.0",
"@watergis/svelte-maplibre-legend": "^4.0.0",
"@watergis/svelte-maplibre-measure": "^3.0.0",
"@watergis/svelte-maplibre-menu": "^3.0.0",
"@watergis/svelte-maplibre-share": "^3.0.0",
"@watergis/svelte-maplibre-style-switcher": "^3.0.2",
"@watergis/svelte-maplibre-share": "^4.0.0",
"@watergis/svelte-maplibre-style-switcher": "^4.0.0",
"@watergis/svelte-maplibre-valhalla": "^3.0.0",
"buffer": "^6.0.3",
"bulma": "^0.9.4",
"bulma": "^1.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.2",
Expand Down
81 changes: 50 additions & 31 deletions pnpm-lock.yaml

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

9 changes: 1 addition & 8 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@
import { config } from '$config';
import Map from '$lib/components/Map.svelte';
import { selectedStyle } from '$lib/stores';
import { onMount } from 'svelte';
const defaultStyle = config.styles[0];
selectedStyle.update(() => defaultStyle);
onMount(async () => {
window.global = window;
const Buffer = await (await import('buffer')).Buffer;
window.Buffer = Buffer;
});
</script>

<svelte:head>
Expand All @@ -27,5 +20,5 @@
<Map />

<style global lang="scss">
@import 'bulma/bulma.sass';
@import 'bulma/css/bulma.min.css';
</style>

0 comments on commit b1fc787

Please sign in to comment.