Skip to content

Commit

Permalink
feat: upgrade frontend deps; fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Liam Stanley <liam@liam.sh>
  • Loading branch information
lrstanley committed Sep 9, 2024
1 parent 5b680ae commit f3da1a8
Show file tree
Hide file tree
Showing 9 changed files with 992 additions and 825 deletions.
44 changes: 22 additions & 22 deletions public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,47 +6,47 @@
"not ie 11"
],
"dependencies": {
"@iconify-json/mdi": "^1.1.52",
"@types/leaflet": "^1.9.3",
"@iconify-json/mdi": "^1.2.0",
"@types/leaflet": "^1.9.12",
"@unocss/reset": "^0.47.6",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/tsconfig": "^0.1.3",
"@vueuse/components": "^9.13.0",
"@vueuse/core": "^9.13.0",
"@vueuse/motion": "2.0.0-beta.12",
"autoprefixer": "^10.4.14",
"core-js": "^3.30.2",
"autoprefixer": "^10.4.20",
"core-js": "^3.38.1",
"ip-regex": "^5.0.0",
"leaflet": "^1.9.3",
"naive-ui": "^2.34.3",
"leaflet": "^1.9.4",
"naive-ui": "^2.39.0",
"openapi-typescript-codegen": "^0.23.0",
"pinia": "^2.0.36",
"postcss": "^8.4.31",
"pinia": "^2.2.2",
"postcss": "^8.4.45",
"rapidoc": "9.3.2",
"rollup": "^3.21.7",
"rollup-plugin-visualizer": "^5.9.0",
"rollup": "^3.29.4",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^4.9.5",
"unocss": "^0.47.6",
"unplugin-auto-import": "^0.12.2",
"unplugin-icons": "^0.14.15",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.3.9",
"vite": "^4.5.3",
"vite-plugin-pages": "^0.28.0",
"vue": "^3.3.2",
"vue-router": "^4.2.0"
"vue": "^3.5.3",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@playwright/test": "^1.47.0",
"@rushstack/eslint-patch": "^1.10.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.13.0",
"playwright": "^1.33.0",
"eslint-plugin-vue": "^9.28.0",
"playwright": "^1.47.0",
"prettier": "^2.8.8"
},
"eslintConfig": {
Expand Down
9 changes: 3 additions & 6 deletions public/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { PlaywrightTestConfig } from "@playwright/test"
import { devices } from "@playwright/test"
import { defineConfig, devices } from "@playwright/test"

const config: PlaywrightTestConfig = {
export default defineConfig({
testDir: "./tests",
outputDir: "./tests/results/",
webServer: {
Expand Down Expand Up @@ -37,6 +36,4 @@ const config: PlaywrightTestConfig = {
},
},
],
}

export default config
})
Loading

0 comments on commit f3da1a8

Please sign in to comment.