mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-27 19:00:35 +00:00
Merge branch 'origin/main' into 'next-release/main'
This commit is contained in:
commit
a9a6f8f2a7
4 changed files with 1039 additions and 779 deletions
|
@ -18,52 +18,52 @@
|
|||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@intlify/unplugin-vue-i18n": "^6.0.0",
|
||||
"@kyvg/vue3-notification": "^3.2.1",
|
||||
"@kyvg/vue3-notification": "^3.4.1",
|
||||
"@mdi/js": "^7.4.47",
|
||||
"@vueuse/core": "^12.0.0",
|
||||
"@vueuse/core": "^12.2.0",
|
||||
"ansi_up": "^6.0.2",
|
||||
"dompurify": "^3.2.0",
|
||||
"dompurify": "^3.2.3",
|
||||
"fuse.js": "^7.0.0",
|
||||
"js-base64": "^3.7.7",
|
||||
"lodash": "^4.17.21",
|
||||
"marked": "^15.0.0",
|
||||
"node-emoji": "^2.1.3",
|
||||
"pinia": "^2.2.1",
|
||||
"marked": "^15.0.4",
|
||||
"node-emoji": "^2.2.0",
|
||||
"pinia": "^2.3.0",
|
||||
"prismjs": "^1.29.0",
|
||||
"semver": "^7.6.3",
|
||||
"simple-icons": "^13.5.0",
|
||||
"vue": "^3.4.38",
|
||||
"vue-i18n": "^10.0.3",
|
||||
"vue-router": "^4.4.3"
|
||||
"simple-icons": "^13.21.0",
|
||||
"vue": "^3.5.13",
|
||||
"vue-i18n": "^10.0.5",
|
||||
"vue-router": "^4.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^3.3.2",
|
||||
"@eslint/js": "^9.9.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
||||
"@intlify/eslint-plugin-vue-i18n": "3.1.0",
|
||||
"@antfu/eslint-config": "^3.12.1",
|
||||
"@eslint/js": "^9.17.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
|
||||
"@intlify/eslint-plugin-vue-i18n": "3.2.0",
|
||||
"@intlify/unplugin-vue-i18n": "^6.0.2",
|
||||
"@types/eslint__js": "^8.42.3",
|
||||
"@types/lodash": "^4.17.7",
|
||||
"@types/node": "^22.0.0",
|
||||
"@types/prismjs": "^1.26.4",
|
||||
"@types/lodash": "^4.17.13",
|
||||
"@types/node": "^22.10.2",
|
||||
"@types/prismjs": "^1.26.5",
|
||||
"@types/semver": "^7.5.8",
|
||||
"@types/tinycolor2": "^1.4.6",
|
||||
"@vitejs/plugin-vue": "^5.1.2",
|
||||
"@vue/compiler-sfc": "^3.4.38",
|
||||
"@vitejs/plugin-vue": "^5.2.1",
|
||||
"@vue/compiler-sfc": "^3.5.13",
|
||||
"@vue/test-utils": "^2.4.6",
|
||||
"eslint": "^9.9.0",
|
||||
"eslint-plugin-promise": "^7.1.0",
|
||||
"eslint-plugin-vue-scoped-css": "^2.8.1",
|
||||
"jsdom": "^25.0.0",
|
||||
"prettier": "^3.3.3",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-plugin-promise": "^7.2.1",
|
||||
"eslint-plugin-vue-scoped-css": "^2.9.0",
|
||||
"jsdom": "^25.0.1",
|
||||
"prettier": "^3.4.2",
|
||||
"tinycolor2": "^1.6.0",
|
||||
"typescript": "5.6.3",
|
||||
"vite": "^6.0.0",
|
||||
"typescript": "5.7.2",
|
||||
"vite": "^6.0.5",
|
||||
"vite-plugin-prismjs": "^0.0.11",
|
||||
"vite-plugin-windicss": "^1.9.3",
|
||||
"vite-plugin-windicss": "^1.9.4",
|
||||
"vite-svg-loader": "^5.1.0",
|
||||
"vitest": "^2.0.5",
|
||||
"vue-tsc": "^2.0.29",
|
||||
"vitest": "^2.1.8",
|
||||
"vue-tsc": "^2.2.0",
|
||||
"windicss": "^3.5.6"
|
||||
},
|
||||
"pnpm": {
|
||||
|
|
1751
web/pnpm-lock.yaml
1751
web/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -92,7 +92,9 @@
|
|||
class="transition-height duration-150 overflow-hidden"
|
||||
:class="{
|
||||
'max-h-0': workflowsCollapsed[workflow.id],
|
||||
'ml-6': !singleConfig,
|
||||
}"
|
||||
:style="{
|
||||
marginLeft: !singleConfig ? '1.6rem' : '',
|
||||
}"
|
||||
>
|
||||
<button
|
||||
|
|
|
@ -7,6 +7,7 @@ import type { Plugin } from 'vite';
|
|||
import prismjs from 'vite-plugin-prismjs';
|
||||
import WindiCSS from 'vite-plugin-windicss';
|
||||
import svgLoader from 'vite-svg-loader';
|
||||
import type { ViteUserConfig } from 'vitest/config';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
function woodpeckerInfoPlugin(): Plugin {
|
||||
|
@ -91,4 +92,4 @@ export default defineConfig({
|
|||
globals: true,
|
||||
environment: 'jsdom',
|
||||
},
|
||||
});
|
||||
} as ViteUserConfig);
|
||||
|
|
Loading…
Reference in a new issue