Force newer versions of chokidar
chokidar has a newer version which do not depend on fsevents, is faster and only compatible with newer node versions (>=8) Their actual interface remains the same and we can safely _force_ newer versions to get performance and security benefits. This can be removed once all dependencies are up to date: https://gitlab.com/gitlab-org/gitlab/-/issues/219353 It should also alleviate the problem of: https://gitlab.com/gitlab-org/gitlab-development-kit/-/issues/765
Showing
... | ... | @@ -211,8 +211,9 @@ |
"bootstrap-vue": "https://docs.gitlab.com/ee/development/fe_guide/dependencies.md#bootstrapvue" | ||
}, | ||
"resolutions": { | ||
"vue-jest/ts-jest": "24.0.0", | ||
"monaco-editor": "0.18.1" | ||
"chokidar": "^3.4.0", | ||
"monaco-editor": "0.18.1", | ||
"vue-jest/ts-jest": "24.0.0" | ||
}, | ||
"engines": { | ||
"node": ">=10.13.0", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment