2020-01-06 20:56:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
css_deps=(
|
|
|
|
# Must-have order
|
|
|
|
npm/bootstrap@4/dist/css/bootstrap.min.css
|
|
|
|
npm/bootswatch@4/dist/darkly/bootstrap.min.css
|
|
|
|
npm/bootstrap-vue@2/dist/bootstrap-vue.min.css
|
|
|
|
|
|
|
|
# Other packages
|
2020-09-09 14:50:54 +00:00
|
|
|
npm/leaflet@1.7.1/dist/leaflet.min.css
|
2020-01-06 20:56:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
js_deps=(
|
|
|
|
# Must-have order
|
|
|
|
npm/vue@2/dist/vue.min.js
|
|
|
|
npm/bootstrap-vue@2/dist/bootstrap-vue.min.js
|
2020-09-09 14:50:54 +00:00
|
|
|
npm/vue-i18n@8.21.0/dist/vue-i18n.min.js
|
2020-01-06 20:56:17 +00:00
|
|
|
|
|
|
|
# Other packages
|
2020-09-09 14:50:54 +00:00
|
|
|
npm/axios@0.20.0/dist/axios.min.js
|
|
|
|
npm/leaflet@1.7.1/dist/leaflet.min.js
|
|
|
|
npm/moment@2.27.0/min/moment.min.js
|
2020-01-06 20:56:17 +00:00
|
|
|
)
|
|
|
|
|
2020-01-06 23:19:11 +00:00
|
|
|
leaflet_images=(
|
|
|
|
marker-icon.png
|
|
|
|
marker-icon-2x.png
|
|
|
|
marker-shadow.png
|
|
|
|
)
|
|
|
|
|
|
|
|
rm -rf frontend/leaflet
|
|
|
|
mkdir -p frontend/leaflet
|
|
|
|
for img in "${leaflet_images[@]}"; do
|
|
|
|
curl -sSfLo "frontend/leaflet/${img}" "https://cdn.jsdelivr.net/npm/leaflet@1.5.1/dist/images/${img}"
|
|
|
|
done
|
|
|
|
|
2020-01-06 20:56:17 +00:00
|
|
|
IFS=','
|
|
|
|
|
|
|
|
curl -sSfLo frontend/combine.js "https://cdn.jsdelivr.net/combine/${js_deps[*]}"
|
|
|
|
curl -sSfLo frontend/combine.css "https://cdn.jsdelivr.net/combine/${css_deps[*]}"
|