@jayfong/x-server 2.83.0 → 2.84.0
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.
|
@@ -190,7 +190,7 @@ class BuildUtil {
|
|
|
190
190
|
for (const libqueryEngineFile of libqueryEngineFiles) {
|
|
191
191
|
const libqueryEngineFileBaseName = _nodePath.default.basename(libqueryEngineFile);
|
|
192
192
|
if (prismaCliBinaryTargets.length && prismaCliBinaryTargets.every(prismaCliBinaryTarget => !libqueryEngineFile.includes(prismaCliBinaryTarget))) {
|
|
193
|
-
|
|
193
|
+
continue;
|
|
194
194
|
}
|
|
195
195
|
await _fsExtra.default.copyFile(libqueryEngineFile, _nodePath.default.join(distDir, libqueryEngineFileBaseName));
|
|
196
196
|
}
|
package/lib/cli/build_util.js
CHANGED
|
@@ -184,7 +184,7 @@ export class BuildUtil {
|
|
|
184
184
|
for (const libqueryEngineFile of libqueryEngineFiles) {
|
|
185
185
|
const libqueryEngineFileBaseName = path.basename(libqueryEngineFile);
|
|
186
186
|
if (prismaCliBinaryTargets.length && prismaCliBinaryTargets.every(prismaCliBinaryTarget => !libqueryEngineFile.includes(prismaCliBinaryTarget))) {
|
|
187
|
-
|
|
187
|
+
continue;
|
|
188
188
|
}
|
|
189
189
|
await fs.copyFile(libqueryEngineFile, path.join(distDir, libqueryEngineFileBaseName));
|
|
190
190
|
}
|