**chore: remove unused external dependencies from Rollup config**

### Changes:
- Removed the following unused external dependencies from `rollup.config.js`:
  - `crypto`
  - `os`
  - `stream`
  - `http`
  - `http2`
  - `https`
  - `zlib`

### Purpose:
Simplified the Rollup configuration by eliminating unused external dependencies, reducing complexity, and improving build clarity.
This commit is contained in:
David Snelling 2025-06-20 12:03:48 -07:00
parent e980d33a34
commit 968bc33a7a

View file

@ -15,13 +15,6 @@ const nodeModuleShims = () => {
'fs',
'path',
'util',
'crypto',
'os',
'stream',
'http',
'http2',
'https',
'zlib',
'child_process'
]