mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-06-05 08:58:50 +00:00
Upgrade vue-i18n (#4317)
Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com>
This commit is contained in:
parent
bbdabae564
commit
084d6f883a
4 changed files with 1472 additions and 1285 deletions
|
@ -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 {
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
"semver": "^7.6.3",
|
"semver": "^7.6.3",
|
||||||
"simple-icons": "^13.5.0",
|
"simple-icons": "^13.5.0",
|
||||||
"vue": "^3.4.38",
|
"vue": "^3.4.38",
|
||||||
"vue-i18n": "^9.13.1",
|
"vue-i18n": "^10.0.4",
|
||||||
"vue-router": "^4.4.3"
|
"vue-router": "^4.4.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
2753
web/pnpm-lock.yaml
2753
web/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -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);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue