update deps; adjusted API for build -> built change

This commit is contained in:
2024-06-23 13:17:26 +02:00
parent 6746d08304
commit 8ccaf83b0b
12 changed files with 3318 additions and 854 deletions

894
frontend/.yarn/releases/yarn-4.3.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

2
frontend/.yarnrc.yml Normal file
View File

@@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-4.3.1.cjs
nodeLinker: node-modules

View File

@@ -1,10 +1,10 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
BuildServerStats: typeof import('./src/components/BuildServerStats.vue')['default']

View File

@@ -7,24 +7,25 @@
"preview": "vite preview"
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@mdi/font": "7.0.96",
"@fontsource/roboto": "^5.0.13",
"@mdi/font": "7.4.47",
"fork-awesome": "^1.2.0",
"roboto-fontface": "*",
"vue": "^3.3.0",
"vuetify": "^3.0.0"
"roboto-fontface": "^0.10.0",
"vue": "^3.4.30",
"vuetify": "^3.6.10"
},
"devDependencies": {
"@babel/types": "^7.23.0",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"prettier": "^3.2.4",
"sass": "^1.69.0",
"typescript": "^5.3.0",
"unplugin-fonts": "^1.1.0",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.0",
"vite-plugin-vuetify": "^2.0.0",
"vue-tsc": "^1.8.0"
}
"@babel/types": "^7.24.7",
"@types/node": "^20.14.8",
"@vitejs/plugin-vue": "^5.0.5",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"typescript": "^5.5.2",
"unplugin-fonts": "^1.1.1",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.3.1",
"vite-plugin-vuetify": "^2.0.3",
"vue-tsc": "^2.0.22"
},
"packageManager": "yarn@4.3.1"
}

View File

@@ -6,7 +6,7 @@
style="border-radius: 10px; border: 2px solid grey"
variant="elevated">
<v-card-title>
<v-row align="center" class="w-100">
<v-row align="center" class="w-100" style="margin-top: 1px">
<v-col class="v-col-12 v-col-md-1">
<v-row
v-if="packageCount.building > 0"
@@ -140,7 +140,7 @@ const getTotalPackages = () => {
}
const getBuiltPackages = () => {
fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=build', {
fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=built', {
method: 'GET'
})
.then((response) => {

View File

@@ -180,7 +180,7 @@ const selectStatus = ref({ title: 'Status (any)', value: 'any' })
const selectStatusItems = [
{ title: 'Status (any)', value: 'any' },
{ title: 'Latest', value: 'latest' },
{ title: 'Built', value: 'build' },
{ title: 'Built', value: 'built' },
{ title: 'Failed', value: 'failed' },
{ title: 'Skipped', value: 'skipped' },
{ title: 'Delayed', value: 'delayed' },

View File

@@ -5,7 +5,7 @@ export interface Package {
status:
| 'latest'
| 'failed'
| 'build'
| 'built'
| 'skipped'
| 'delayed'
| 'building'

File diff suppressed because it is too large Load Diff