aboutsummaryrefslogtreecommitdiff
path: root/scripts/smoke/index.js
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2022-09-28 23:13:33 +0800
committerGravatar GitHub <noreply@github.com> 2022-09-28 23:13:33 +0800
commit812658ad2ab3732a99e35c4fd903e302e723db46 (patch)
tree37dc457bcfa8558e546d064eb315a74149010da1 /scripts/smoke/index.js
parentf4bca41a2d85968a2c9f2379f99954c7bcb06df1 (diff)
downloadastro-812658ad2ab3732a99e35c4fd903e302e723db46.tar.gz
astro-812658ad2ab3732a99e35c4fd903e302e723db46.tar.zst
astro-812658ad2ab3732a99e35c4fd903e302e723db46.zip
Remove shamefully-hoist (#4842)
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r--scripts/smoke/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js
index d231b5e5d..9bdaff820 100644
--- a/scripts/smoke/index.js
+++ b/scripts/smoke/index.js
@@ -46,7 +46,7 @@ async function run() {
console.log('🤖', 'Testing', name);
try {
- await execa('pnpm', ['install', '--ignore-scripts', '--frozen-lockfile=false', isExternal ? '--shamefully-hoist' : ''].filter(x => x), { cwd: fileURLToPath(directory), stdio: 'inherit' });
+ await execa('pnpm', ['install', '--ignore-scripts', '--frozen-lockfile=false'].filter(x => x), { cwd: fileURLToPath(directory), stdio: 'inherit' });
await execa('pnpm', ['astro', 'telemetry', 'disable']);
await execa('pnpm', ['run', 'build'], { cwd: fileURLToPath(directory), stdio: 'inherit' });
} catch (err) {