Updating the minimatch version
Author: neyasanandCreated Mar 6, 2026Updated Mar 6, 2026
Hi!
Firstly, thanks for your work on this project!
Today I used patch-package to patch [email protected] for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/karma/lib/file-list.js b/node_modules/karma/lib/file-list.js
index b4ec01d..b2a4a9b 100644
--- a/node_modules/karma/lib/file-list.js
+++ b/node_modules/karma/lib/file-list.js
@@ -1,7 +1,7 @@
'use strict'
const { promisify } = require('util')
-const mm = require('minimatch')
+const mm = require('minimatch').minimatch
const Glob = require('glob').Glob
const fs = require('graceful-fs')
const statAsync = promisify(fs.stat.bind(fs))This issue body was partially generated by patch-package.
Source: karma-runner/karma