@entreprise-os/vitest-config 2.4.84 → 2.4.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entreprise-os/vitest-config",
3
- "version": "2.4.84",
3
+ "version": "2.4.86",
4
4
  "description": "Shared Vitest configuration for Enterprise OS packages",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -98,6 +98,16 @@ export const commonDataExternals = [
98
98
  "@tanstack/react-query",
99
99
  "sonner",
100
100
 
101
+ // Testing (vitest uses node:module which breaks browser builds)
102
+ "vitest",
103
+ /^@vitest\//,
104
+
105
+ // tRPC (complex re-exports)
106
+ /^@trpc\//,
107
+
108
+ // Express (has CommonJS dependencies like debug that use node:module)
109
+ "express",
110
+
101
111
  // Node.js built-ins
102
112
  /^node:/,
103
113
  "fs",