chore(deps): update web npm deps non-major (#4174)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
This commit is contained in:
renovate[bot] 2024-10-05 14:37:00 +01:00 committed by GitHub
parent 0c96f3611c
commit 73c0fe2cf8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1287 additions and 938 deletions

View file

@ -1,5 +1,6 @@
import { readFile } from 'node:fs/promises'; import { readFile } from 'node:fs/promises';
// eslint-disable-next-line antfu/no-top-level-await
const config = JSON.parse(await readFile(new URL('../.prettierrc.json', import.meta.url))); const config = JSON.parse(await readFile(new URL('../.prettierrc.json', import.meta.url)));
export default { export default {

View file

@ -57,7 +57,7 @@
"prettier": "^3.3.3", "prettier": "^3.3.3",
"replace-in-file": "^8.1.0", "replace-in-file": "^8.1.0",
"tinycolor2": "^1.6.0", "tinycolor2": "^1.6.0",
"typescript": "5.5.4", "typescript": "5.6.2",
"vite": "^5.4.1", "vite": "^5.4.1",
"vite-plugin-prismjs": "^0.0.11", "vite-plugin-prismjs": "^0.0.11",
"vite-plugin-windicss": "^1.9.3", "vite-plugin-windicss": "^1.9.3",

File diff suppressed because it is too large Load diff

View file

@ -18,7 +18,6 @@ function woodpeckerInfoPlugin(): Plugin {
'1) Please add `WOODPECKER_DEV_WWW_PROXY=http://localhost:8010` to your `.env` file.\n' + '1) Please add `WOODPECKER_DEV_WWW_PROXY=http://localhost:8010` to your `.env` file.\n' +
'After starting the woodpecker server as well you should now be able to access the UI at http://localhost:8000/\n\n' + 'After starting the woodpecker server as well you should now be able to access the UI at http://localhost:8000/\n\n' +
'2) If you want to run the vite dev server (`pnpm start`) within a container please set `VITE_DEV_SERVER_HOST=0.0.0.0`.'; '2) If you want to run the vite dev server (`pnpm start`) within a container please set `VITE_DEV_SERVER_HOST=0.0.0.0`.';
// eslint-disable-next-line no-console
console.log(info); console.log(info);
}, },
}; };