Skip to content

Commit

Permalink
Merge pull request #155 from SpeciesFileGroup/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
jlpereira authored Sep 25, 2023
2 parents da10698 + 4f4d065 commit 5fdb6ca
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 93 deletions.
158 changes: 79 additions & 79 deletions package-lock.json

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

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,29 @@
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.14.2",
"@nuxt/devalue": "^2.0.2",
"@unhead/ssr": "^1.3.4",
"axios": "^1.4.0",
"@unhead/ssr": "^1.7.4",
"axios": "^1.5.0",
"js-yaml": "^4.1.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"markdown-it-anchor": "^8.6.7",
"pinia": "^2.1.6",
"unhead": "^1.3.4",
"unhead": "^1.7.4",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"vue-router": "^4.2.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@unhead/ssr": "^1.3.4",
"@vitejs/plugin-vue": "^4.3.1",
"autoprefixer": "^10.4.15",
"@tailwindcss/typography": "^0.5.10",
"@unhead/ssr": "^1.7.4",
"@vitejs/plugin-vue": "^4.3.4",
"autoprefixer": "^10.4.16",
"compression": "^1.7.4",
"eslint": "^8.47.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"express": "^4.18.2",
"minimist": "^1.2.8",
"postcss": "^8.4.28",
"sass": "^1.65.1",
"postcss": "^8.4.30",
"sass": "^1.68.0",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9",
"vite-plugin-md": "^0.21.5",
Expand Down
8 changes: 5 additions & 3 deletions src/components/Footer/FooterAnalytics.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<template>
<span v-if="analytics">This site use {{ analytics }}.</span>
<span v-if="analytics">This site uses {{ analytics }}.</span>
</template>

<script setup>
const ANALYTICS_LOADERS = {
analytics: 'Google Analytics',
gtm: 'Google Tag Manager',
Expand All @@ -20,5 +19,8 @@ const ANALYTICS_LOADERS = {
}
const analyticKeys = Object.keys(__APP_ENV__.analytics_services || {})
const analytics = analyticKeys.map(key => ANALYTICS_LOADERS[key]).filter(Boolean).join('; ')
const analytics = analyticKeys
.map((key) => ANALYTICS_LOADERS[key])
.filter(Boolean)
.join('; ')
</script>

0 comments on commit 5fdb6ca

Please sign in to comment.