From adb967d4c48ee1b3b4124ccddfd2104c31ea72d7 Mon Sep 17 00:00:00 2001 From: David First Date: Wed, 4 Feb 2026 10:17:59 -0500 Subject: [PATCH] fix(watcher): add micromatch as direct dependency for @parcel/watcher @parcel/watcher requires micromatch but due to pnpm's strict hoisting, it may not be accessible in all contexts, causing intermittent "Cannot find module 'micromatch'" errors during watch. --- workspace.jsonc | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace.jsonc b/workspace.jsonc index 7eff41df72cb..11df0ebb1fd2 100644 --- a/workspace.jsonc +++ b/workspace.jsonc @@ -546,6 +546,7 @@ "lru-cache": "10.4.3", "memoizee": "0.4.15", "mime": "2.5.2", + "micromatch": "^4.0.5", "mini-css-extract-plugin": "2.2.2", "minimatch": "3.0.5", "mocha": "11.1.0",