Bump dependencies

This commit is contained in:
Adam Goldsmith 2024-06-26 13:15:01 -04:00
parent 21d0c7cca3
commit 1571086844
5 changed files with 981 additions and 686 deletions

View File

@ -3,19 +3,20 @@
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"private": true, "private": true,
"type": "module",
"dependencies": { "dependencies": {
"aprs-parser": "github:ad1217/npm-aprs-parser#no-dynamic-require", "aprs-parser": "github:ad1217/npm-aprs-parser#no-dynamic-require",
"distinct-colors": "^1.0.4", "distinct-colors": "^3.0.0",
"ol": "^6.15.1", "ol": "^9.2.4",
"parse-duration": "^1.1.0", "parse-duration": "^1.1.0",
"vue": "^3.3.4", "vue": "^3.4.30",
"vue3-openlayers": "^0.1.75" "vue3-openlayers": "^10.0.1"
}, },
"devDependencies": { "devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.0.4", "@modyfi/vite-plugin-yaml": "^1.1.0",
"@rollup/plugin-yaml": "^4.1.1", "@rollup/plugin-yaml": "^4.1.2",
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^5.0.5",
"vite": "^4.4.3" "vite": "^5.3.1"
}, },
"scripts": { "scripts": {
"start": "pnpm run -r --parallel dev", "start": "pnpm run -r --parallel dev",

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,6 @@
"dev": "node ./src/server.js" "dev": "node ./src/server.js"
}, },
"dependencies": { "dependencies": {
"ws": "^8.13.0" "ws": "^8.17.1"
} }
} }

View File

@ -1,18 +1,21 @@
lockfileVersion: '6.0' lockfileVersion: '9.0'
settings: settings:
autoInstallPeers: true autoInstallPeers: true
excludeLinksFromLockfile: false excludeLinksFromLockfile: false
dependencies: importers:
ws:
specifier: ^8.13.0 .:
version: 8.13.0 dependencies:
ws:
specifier: ^8.17.1
version: 8.17.1
packages: packages:
/ws@8.13.0: ws@8.17.1:
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'} engines: {node: '>=10.0.0'}
peerDependencies: peerDependencies:
bufferutil: ^4.0.1 bufferutil: ^4.0.1
@ -22,4 +25,7 @@ packages:
optional: true optional: true
utf-8-validate: utf-8-validate:
optional: true optional: true
dev: false
snapshots:
ws@8.17.1: {}

View File

@ -94,9 +94,9 @@ import LineString from 'ol/geom/LineString';
import Style from 'ol/style/Style'; import Style from 'ol/style/Style';
import Stroke from 'ol/style/Stroke'; import Stroke from 'ol/style/Stroke';
import packetLog from '/../IS_packets.txt?raw'; import packetLog from '../IS_packets.txt?raw';
const routes = Object.values(import.meta.globEager('./gpx/*.gpx')).map( const routes = Object.values(
(gpx) => gpx.default import.meta.glob('./gpx/*.gpx', { eager: true, import: 'default' })
); );
const parser = new APRSParser(); const parser = new APRSParser();