fix(deps): update dependency fuzzysort to v3 (#30315)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Renaud Chaput <renchap@gmail.com>
This commit is contained in:
		@@ -2,19 +2,19 @@ const { join, resolve } = require('path');
 | 
			
		||||
 | 
			
		||||
const { env, settings } = require('../configuration');
 | 
			
		||||
 | 
			
		||||
// Those modules contain modern ES code that need to be transpiled for Webpack to process it
 | 
			
		||||
const nodeModulesToProcess = [
 | 
			
		||||
  '@reduxjs', 'fuzzysort'
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
module.exports = {
 | 
			
		||||
  test: /\.(js|jsx|mjs|ts|tsx)$/,
 | 
			
		||||
  include: [
 | 
			
		||||
    settings.source_path,
 | 
			
		||||
    ...settings.resolved_paths,
 | 
			
		||||
    'node_modules/@reduxjs'
 | 
			
		||||
    ...nodeModulesToProcess.map(p => resolve(`node_modules/${p}`)),
 | 
			
		||||
  ].map(p => resolve(p)),
 | 
			
		||||
  exclude: function(modulePath) {
 | 
			
		||||
    return (
 | 
			
		||||
      /node_modules/.test(modulePath) &&
 | 
			
		||||
      !/@reduxjs/.test(modulePath)
 | 
			
		||||
    );
 | 
			
		||||
  },
 | 
			
		||||
  exclude: new RegExp('node_modules\\/(?!(' + nodeModulesToProcess.join('|')+')\\/).*'),
 | 
			
		||||
  use: [
 | 
			
		||||
    {
 | 
			
		||||
      loader: 'babel-loader',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user