We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a42dd4 commit 146e9c6Copy full SHA for 146e9c6
packages/@triplex/server/src/util/deps.ts
@@ -136,8 +136,8 @@ function getVersionRequirements(
136
fiberVersion: string | null,
137
): Record<string, VersionRange> {
138
if (!fiberVersion) {
139
- // Default to v8 requirements if fiber isn't installed
140
- return fiberVersionRequirements[8];
+ // Fiber is optional, so don't enforce version requirements if it's not installed
+ return {};
141
}
142
143
const majorVersion = getMajorVersion(fiberVersion);
0 commit comments