From 92dd2a688b6e4b45c91ba11775cf9a8f375a3834 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sat, 8 Jun 2024 19:58:42 +0300 Subject: [PATCH] move to src --- features.js => src/features.js | 0 geolocation.js => src/geolocation.js | 0 index.html => src/index.html | 0 main.js => src/main.js | 2 +- map.js => src/map.js | 0 popup.js => src/popup.js | 4 ++-- style.css => src/style.css | 0 utils.js => src/utils.js | 0 vite.config.js | 16 ++++++++++------ 9 files changed, 13 insertions(+), 9 deletions(-) rename features.js => src/features.js (100%) rename geolocation.js => src/geolocation.js (100%) rename index.html => src/index.html (100%) rename main.js => src/main.js (89%) rename map.js => src/map.js (100%) rename popup.js => src/popup.js (96%) rename style.css => src/style.css (100%) rename utils.js => src/utils.js (100%) diff --git a/features.js b/src/features.js similarity index 100% rename from features.js rename to src/features.js diff --git a/geolocation.js b/src/geolocation.js similarity index 100% rename from geolocation.js rename to src/geolocation.js diff --git a/index.html b/src/index.html similarity index 100% rename from index.html rename to src/index.html diff --git a/main.js b/src/main.js similarity index 89% rename from main.js rename to src/main.js index 2f87ad9..4fa3714 100644 --- a/main.js +++ b/src/main.js @@ -4,7 +4,7 @@ import map from "./map"; import "./popup"; -import mergedData from "./merged-data.json"; +import mergedData from "../merged-data.json"; import { createFeatures } from "./features"; import VectorSource from "ol/source/Vector"; import VectorLayer from "ol/layer/Vector"; diff --git a/map.js b/src/map.js similarity index 100% rename from map.js rename to src/map.js diff --git a/popup.js b/src/popup.js similarity index 96% rename from popup.js rename to src/popup.js index c81150b..f183fa6 100644 --- a/popup.js +++ b/src/popup.js @@ -4,7 +4,7 @@ import QRCode from "qrcode"; import { el } from "./utils"; import { toLonLat } from "ol/proj"; -const container = el("popup"); +const popup = el("popup"); const closer = el("popup-closer"); const popupName = el("popup-name"); @@ -15,7 +15,7 @@ const popupSource = el("popup-source"); const popupOperationTime = el("popup-operation-time"); const overlay = new Overlay({ - element: container, + element: popup, autoPan: true, autoPanAnimation: { duration: 250, diff --git a/style.css b/src/style.css similarity index 100% rename from style.css rename to src/style.css diff --git a/utils.js b/src/utils.js similarity index 100% rename from utils.js rename to src/utils.js diff --git a/vite.config.js b/vite.config.js index 9b1a28c..4953c33 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,13 +1,17 @@ -import webfontDownload from 'vite-plugin-webfont-dl'; -import { VitePluginRadar } from 'vite-plugin-radar' +import webfontDownload from "vite-plugin-webfont-dl"; +import { VitePluginRadar } from "vite-plugin-radar"; export default { + root: "src", + build: { + outDir: "../dist", + }, plugins: [ webfontDownload(), - VitePluginRadar({ + VitePluginRadar({ metrica: { - id: process.env.YANDEX_METRICA_ID + id: process.env.YANDEX_METRICA_ID, }, - }) + }), ], -}; \ No newline at end of file +};