From 56201db1dc66f3a2d598f6f8da0bec170dc26ba1 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 17 Feb 2020 03:09:00 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- config/webpack.vendor.config.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'config/webpack.vendor.config.js') diff --git a/config/webpack.vendor.config.js b/config/webpack.vendor.config.js index 8da4938191c..90736349d91 100644 --- a/config/webpack.vendor.config.js +++ b/config/webpack.vendor.config.js @@ -1,6 +1,7 @@ const path = require('path'); const webpack = require('webpack'); const vendorDllHash = require('./helpers/vendor_dll_hash'); +const { YarnCheck } = require('yarn-check-webpack-plugin'); const ROOT_PATH = path.resolve(__dirname, '..'); @@ -60,6 +61,11 @@ module.exports = { path: path.join(dllCachePath, '[name].dll.manifest.json'), name: '[name]_[hash]', }), + new YarnCheck({ + rootDirectory: ROOT_PATH, + exclude: /ts-jest/, + forceKill: true, + }), ], node: { -- cgit v1.2.3