0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
Canaris 2024-01-02 14:53:17 +00:00 committed by astrobot-houston
parent 67e06f9db1
commit f192fc3a35

View file

@ -123,7 +123,8 @@ async function runInstallCommand(
const cwd = fileURLToPath(ctx.cwd);
if (ctx.packageManager === 'yarn') await ensureYarnLock({ cwd });
const installCmd = ctx.packageManager === 'yarn' || ctx.packageManager === 'pnpm' ? 'add' : 'install';
const installCmd =
ctx.packageManager === 'yarn' || ctx.packageManager === 'pnpm' ? 'add' : 'install';
await spinner({
start: `Installing dependencies with ${ctx.packageManager}...`,