summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/smoke/index.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js
index 26ca3632d..354147cd6 100644
--- a/scripts/smoke/index.js
+++ b/scripts/smoke/index.js
@@ -52,20 +52,6 @@ async function run() {
console.log(err);
process.exit(1);
}
-
- // Run with the static build too (skip for remote repos)
- if (isExternal) {
- continue;
- }
-
- try {
- await execa('pnpm', ['run', 'build', '--', '--experimental-static-build'], { cwd: fileURLToPath(directory), stdout: 'inherit', stderr: 'inherit' });
- } catch (err) {
- console.log(err);
- process.exit(1);
- }
-
- console.log();
}
}