Compare commits
16 Commits
20260323
...
renovate/m
| Author | SHA1 | Date | |
|---|---|---|---|
| d67bcd57b3 | |||
| 3e3e11d596 | |||
| 6c153df4c9 | |||
| 78dc022857 | |||
| 0947cb8fb6 | |||
| 8695f7ce30 | |||
| 80d9ddb0d2 | |||
| c23a2135cb | |||
| 9450f9bee0 | |||
| a4b7bcc0a0 | |||
| 9965fb1626 | |||
| 58995c2dfb | |||
| fde757e9d3 | |||
| 7c59367d44 | |||
| 109a3b5742 | |||
| 5d6490a084 |
@@ -5,13 +5,13 @@ name: default
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: web_build
|
- name: web_build
|
||||||
image: node:24
|
image: node:25
|
||||||
volumes:
|
volumes:
|
||||||
- name: web_app
|
- name: web_app
|
||||||
path: /tmp/web_build
|
path: /tmp/web_build
|
||||||
commands:
|
commands:
|
||||||
- cd virtweb_frontend
|
- cd virtweb_frontend
|
||||||
- npm install --legacy-peer-deps # TODO remove --legacy-peer-deps ASAP
|
- npm install
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- npm run build
|
- npm run build
|
||||||
- mv dist /tmp/web_build
|
- mv dist /tmp/web_build
|
||||||
|
|||||||
4
virtweb_backend/Cargo.lock
generated
4
virtweb_backend/Cargo.lock
generated
@@ -4411,9 +4411,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uuid"
|
name = "uuid"
|
||||||
version = "1.22.0"
|
version = "1.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
|
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"getrandom 0.4.2",
|
"getrandom 0.4.2",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ reqwest = { version = "0.13.2", features = ["stream"] }
|
|||||||
url = "2.5.8"
|
url = "2.5.8"
|
||||||
virt = "0.4.3"
|
virt = "0.4.3"
|
||||||
sysinfo = { version = "0.38.4", features = ["serde"] }
|
sysinfo = { version = "0.38.4", features = ["serde"] }
|
||||||
uuid = { version = "1.22.0", features = ["v4", "serde"] }
|
uuid = { version = "1.23.0", features = ["v4", "serde"] }
|
||||||
lazy-regex = "3.6.0"
|
lazy-regex = "3.6.0"
|
||||||
thiserror = "2.0.18"
|
thiserror = "2.0.18"
|
||||||
image = "0.25.10"
|
image = "0.25.10"
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
"@mui/icons-material": "^7.3.9",
|
"@mui/icons-material": "^7.3.9",
|
||||||
"@mui/material": "^7.3.9",
|
"@mui/material": "^7.3.9",
|
||||||
"@mui/x-charts": "^8.28.0",
|
"@mui/x-charts": "^8.28.0",
|
||||||
"@mui/x-data-grid": "^8.28.0",
|
"@mui/x-data-grid": "^8.28.2",
|
||||||
"date-and-time": "^4.3.1",
|
"date-and-time": "^4.4.0",
|
||||||
"filesize": "^11.0.13",
|
"filesize": "^11.0.13",
|
||||||
"humanize-duration": "^3.33.2",
|
"humanize-duration": "^3.33.2",
|
||||||
"is-cidr": "^6.0.3",
|
"is-cidr": "^6.0.3",
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@types/react-syntax-highlighter": "^15.5.13",
|
"@types/react-syntax-highlighter": "^15.5.13",
|
||||||
"@types/uuid": "^10.0.0",
|
"@types/uuid": "^11.0.0",
|
||||||
"@vitejs/plugin-react": "^6.0.1",
|
"@vitejs/plugin-react": "^6.0.1",
|
||||||
"eslint": "^10.1.0",
|
"eslint": "^10.1.0",
|
||||||
"eslint-plugin-react-dom": "^3.0.0",
|
"eslint-plugin-react-dom": "^3.0.0",
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
"eslint-plugin-react-x": "^3.0.0",
|
"eslint-plugin-react-x": "^3.0.0",
|
||||||
"globals": "^17.4.0",
|
"globals": "^17.4.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.2",
|
||||||
"typescript-eslint": "^8.57.2",
|
"typescript-eslint": "^8.58.0",
|
||||||
"vite": "^8.0.2"
|
"vite": "^8.0.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user