stable

Clone or download

Read-only

chore: split the two vue3 apps in separate packages

part of story #26799 associate a Tuleap project and a GitLab group No functional change expected in both apps: - you can still create a branch in a GitLab repository from an artifact - you can still see an empty state in Git administration GitLab group link tab - no functional change in other apps built with vite (assets should still be loaded). Notes: The two apps are split because there were Type conflicts between them. It also makes it easier to bump their dependencies individually and generally to manage them. Change-Id: I777ce496f4b9affec83923a614b756a4ce57497b

Modified Files

Name
M lib/frontend/build-system-configurator/package.json +6 −5 Go to diff View file
A lib/frontend/build-system-configurator/src/vite/vite-configurator.test.ts +59 −0 Go to diff View file
M lib/frontend/build-system-configurator/src/vite/vite-configurator.ts +26 −3 Go to diff View file
M plugins/api_explorer/vite.config.ts +15 −12 Go to diff View file
M plugins/document_generation/vite.config.ts +14 −11 Go to diff View file
M plugins/embed/vite.config.ts +10 −7 Go to diff View file
M plugins/gitlab/include/gitlabPlugin.php +4 −4 Go to diff View file
D plugins/gitlab/package.json +0 −32 Go to diff View file
R plugins/gitlab/jest.config.js Go to diff View file
A plugins/gitlab/scripts/artifact-create-branch-action/package.json +31 −0 Go to diff View file
R plugins/gitlab/pnpm-lock.yaml Go to diff View file
R plugins/gitlab/tsconfig.json Go to diff View file
R plugins/gitlab/vite.config.ts Go to diff View file
A plugins/gitlab/scripts/gitlab-group-link/package.json +23 −0 Go to diff View file
A plugins/gitlab/scripts/gitlab-group-link/pnpm-lock.yaml +532 −0 Go to diff View file
A plugins/gitlab/scripts/gitlab-group-link/tsconfig.json +14 −0 Go to diff View file
A plugins/gitlab/scripts/gitlab-group-link/vite.config.ts +37 −0 Go to diff View file
M plugins/label/vite.config.ts +18 −12 Go to diff View file
M plugins/oauth2_server/vite.config.ts +15 −12 Go to diff View file
M plugins/onlyoffice/vite.config.ts +11 −8 Go to diff View file