70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
17 lines
589 B
TypeScript
17 lines
589 B
TypeScript
/**
|
|
* Dependencies that _are not_ bundled along with @cloudflare/vitest-pool-workers.
|
|
*
|
|
* These must be explicitly documented with a reason why they cannot be bundled.
|
|
* This list is validated by `tools/deployments/validate-package-dependencies.ts`.
|
|
*/
|
|
export const EXTERNAL_DEPENDENCIES = [
|
|
// Has optional native N-API bindings for performance - may not bundle correctly
|
|
"cjs-module-lexer",
|
|
|
|
// Native binary - cannot be bundled, used to bundle test files at runtime
|
|
"esbuild",
|
|
|
|
// Used for config validation at runtime - must be available when package is installed
|
|
"zod",
|
|
];
|