summaryrefslogtreecommitdiff
path: root/config/webpack.vendor.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/webpack.vendor.config.js')
-rw-r--r--config/webpack.vendor.config.js6
1 files changed, 6 insertions, 0 deletions
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: {