Bump dependencies
This commit is contained in:
parent
21d0c7cca3
commit
1571086844
17
package.json
17
package.json
@ -3,19 +3,20 @@
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"aprs-parser": "github:ad1217/npm-aprs-parser#no-dynamic-require",
|
||||
"distinct-colors": "^1.0.4",
|
||||
"ol": "^6.15.1",
|
||||
"distinct-colors": "^3.0.0",
|
||||
"ol": "^9.2.4",
|
||||
"parse-duration": "^1.1.0",
|
||||
"vue": "^3.3.4",
|
||||
"vue3-openlayers": "^0.1.75"
|
||||
"vue": "^3.4.30",
|
||||
"vue3-openlayers": "^10.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@modyfi/vite-plugin-yaml": "^1.0.4",
|
||||
"@rollup/plugin-yaml": "^4.1.1",
|
||||
"@vitejs/plugin-vue": "^4.2.3",
|
||||
"vite": "^4.4.3"
|
||||
"@modyfi/vite-plugin-yaml": "^1.1.0",
|
||||
"@rollup/plugin-yaml": "^4.1.2",
|
||||
"@vitejs/plugin-vue": "^5.0.5",
|
||||
"vite": "^5.3.1"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "pnpm run -r --parallel dev",
|
||||
|
1596
pnpm-lock.yaml
1596
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -4,6 +4,6 @@
|
||||
"dev": "node ./src/server.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"ws": "^8.13.0"
|
||||
"ws": "^8.17.1"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,21 @@
|
||||
lockfileVersion: '6.0'
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
dependencies:
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
ws:
|
||||
specifier: ^8.13.0
|
||||
version: 8.13.0
|
||||
specifier: ^8.17.1
|
||||
version: 8.17.1
|
||||
|
||||
packages:
|
||||
|
||||
/ws@8.13.0:
|
||||
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
|
||||
ws@8.17.1:
|
||||
resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
|
||||
engines: {node: '>=10.0.0'}
|
||||
peerDependencies:
|
||||
bufferutil: ^4.0.1
|
||||
@ -22,4 +25,7 @@ packages:
|
||||
optional: true
|
||||
utf-8-validate:
|
||||
optional: true
|
||||
dev: false
|
||||
|
||||
snapshots:
|
||||
|
||||
ws@8.17.1: {}
|
||||
|
@ -94,9 +94,9 @@ import LineString from 'ol/geom/LineString';
|
||||
import Style from 'ol/style/Style';
|
||||
import Stroke from 'ol/style/Stroke';
|
||||
|
||||
import packetLog from '/../IS_packets.txt?raw';
|
||||
const routes = Object.values(import.meta.globEager('./gpx/*.gpx')).map(
|
||||
(gpx) => gpx.default
|
||||
import packetLog from '../IS_packets.txt?raw';
|
||||
const routes = Object.values(
|
||||
import.meta.glob('./gpx/*.gpx', { eager: true, import: 'default' })
|
||||
);
|
||||
|
||||
const parser = new APRSParser();
|
||||
|
Loading…
Reference in New Issue
Block a user