该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 2月 05, 2025
-
-
由 Xiao Di Guan 创作于
-
- 12月 23, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 12月 16, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 12月 11, 2024
-
-
由 Chaoyue Zhao 创作于
Changelog: fixed
-
- 11月 25, 2024
-
-
由 Mark Florian 创作于
Rather than repeatedly disabling it, just allow it in scripts and configuration files.
-
- 11月 04, 2024
-
-
由 Chaoyue Zhao 创作于
- Remove pdf from webpack.vendor.config - Support both versions of pdfjs in webpack.constants.js - Pull pdfjs consts into its own file - Fix tests
-
- 10月 30, 2024
-
-
由 Wu Jeremy 创作于
* Update path resolve for `jh_else_ee` in vite/webpck. * Update eslint for JiHu.
-
- 10月 08, 2024
-
-
由 Chaoyue Zhao 创作于
-
- 9月 25, 2024
-
-
由 Alexander Turinske 创作于
- import worker manually - only apply when using Vite - make check in vite config Changelog: changed
-
- 8月 15, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 8月 12, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 7月 16, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 6月 10, 2024
-
-
由 Stanislav Lashmanov 创作于
The encompasses a few changes: 1. extend the `universal_stylesheet_link_tag` and `universal_path_to_stylesheet` to serve styles directlt from `vite`. 1. use `vite`'s native SCSS feature. This needs a lot of config changes. 1. Use alias for @gitlab fonts: Otherwise we get files under `public/assets/@gitlab`. And who knows how well reverse proxies and such would handle built assets that have an at in the URL.
-
- 5月 30, 2024
-
-
由 Sascha Eggenberger 创作于
Fixes the __open_in_editor url so files can be directly opened in the Code editor when using Vue Devtools. Changelog: fixed
-
- 5月 16, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 5月 07, 2024
-
-
由 Lukas Eipert 创作于
Vite Plugins have the `config` hook and if the config hook returns a partial config, they are deeply merged. This means that the plugins themselves can define a partial config: - https://vitejs.dev/guide/api-plugin#config
-
- 4月 27, 2024
-
-
由 Lukas Eipert 创作于
Yes, and that is the last one for now!
-
由 Lukas Eipert 创作于
So you are really reading these
-
由 Lukas Eipert 创作于
And rename it to AutoStopPlugin, because that's what it is doing!
-
由 Lukas Eipert 创作于
Because this makes our config a little more readable.
-
- 4月 16, 2024
-
-
由 Paul Gascou-Vaillancourt 创作于
This removes the `tailwind_all_the_way` feature flag. We had the flag enabled long enough in production to catch and fix a few regressions. We are now ready to remove the flag and rely on a single Tailwind config which will allow us to resume the migrations. Changelog: added
-
- 4月 11, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 3月 27, 2024
-
-
由 Stanislav Lashmanov 创作于
We have the controller `profiles/keys` with the action `show`, so it tries to load: `pages.profiles.keys.show.js` which doesn't exist. The following entry points do exist: pages/profiles/keys/show/index.js <== does not exist pages/profiles/keys/index.js <== does exist pages/profiles/index.js <== does exist So, it should have tried loading the other two, but didn't. By moving the "backtracking" logic to the backend, we can try loading all of those virtual entry points.
-
- 3月 20, 2024
-
-
由 Stan Hu 创作于
Older GDKs previously did not have Vite HMR configured properly, but now they do. Drop the fallback behavior so that HMR can be disabled properly.
-
由 Lukas Eipert 创作于
We have a few dependencies for which we copy static assets to `public/assets/webpack`: WebIDE, Source Graph and the PDF viewer. In webpack we use the `copy-webpack-plugin` for this. It basically takes an array of files/directories and copies them to `public/assets/webpack`. In this commit we move the definition for this to `webpack.constants.js` and import it to `vite.config.js`. Given our config for the `copy-webpack-plugin` is rather limited (only absolute paths, no globs), we can re-implement a rather smallish scope of the plugin for vite.
-
- 3月 05, 2024
-
-
由 Stanislav Lashmanov 创作于
-
- 2月 20, 2024
-
-
由 Peter Hegman 创作于
Basic setup for compiling Tailwind CSS utilities
-
- 2月 13, 2024
-
-
由 Lukas Eipert 创作于
We want to watch when hot module reloading is _enabled_.
-
- 2月 12, 2024
-
-
由 Lukas Eipert 创作于
We run tests in CI with `vite` (`e2e:test-on-gdk`). When these run in CI, we do not need to watch our CSS assets, because the CSS is not going to be changed during the run of the pipeline. Therefore we just make the CSS compiler respect the hot module reloading setting.
-
- 1月 31, 2024
-
-
由 Lukas 'ai-pi' Eipert 创作于
By moving most of the CSS compilation to a lib file, we will be able to reuse it more easily in some other scripts.
-
- 1月 16, 2024
-
-
由 Andrejs Cunskis 创作于
Disable hot reloading Add explicit message for content expansion wait Explicitly disable watcher when hot reload is disabled Remove watchers increase Do not run load balancer tests automatically Add back ff network per build option Remove hostname update Add ci specific log path
-
- 12月 15, 2023
-
-
由 Lukas 'Eipi' Eipert 创作于
By setting a different client port we can make the nginx reverse proxy work properly. The corresponding GDK was merged here: https://gitlab.com/gitlab-org/gitlab-development-kit/-/merge_requests/3501 We also now start vite on the correct host and we load the settings directly from `config/vite.gdk.json`. This is easier than loading it via the environment. We are not requiring the JSON with an `import` because loading it via readFile is a little more future proof for ESM.
-
- 12月 12, 2023
-
-
由 Thomas Hutterer 创作于
This makes sure we only watch relevant files and avoids the "number of file watchers reached" issues seen on Linux systems. With a custom function we can stop vite from starting recursing down the whole root folder. This makes the whole thing way more efficient. We use config/vite.json to define additional paths we want watched.
-
- 11月 30, 2023
-
-
由 Stanislav Lashmanov 创作于
-
- 11月 28, 2023
-
-
由 Stanislav Lashmanov 创作于
-
- 11月 21, 2023
-
-
由 Jacques Erasmus 创作于
Highlights all HLJS languages with highlight worker
-
- 11月 14, 2023
-
-
由 Lukas Eipert 创作于
We sometimes prune our complete `node_modules` folder, so by moving our cache dir to `tmp/cache` (where `jest`, `webpack`, `babel` reside already), we can prevent removal of our cache folder. This should improve startup times of vite as well, after branch switches.
-
- 11月 01, 2023
-
-
由 Stanislav Lashmanov 创作于
-
由 Stanislav Lashmanov 创作于
-
- 9月 07, 2023
-
-
由 Stanislav Lashmanov 创作于
-