diff options
author | 2024-01-02 14:53:17 +0000 | |
---|---|---|
committer | 2024-01-02 14:53:17 +0000 | |
commit | f192fc3a35872cb187cf631c62fa5b44f004242b (patch) | |
tree | 1e374bba149d5f186f724b63ee8973094458a1fb | |
parent | 67e06f9db1b0492ccfb4b053762dc91d69a53ecb (diff) | |
download | astro-f192fc3a35872cb187cf631c62fa5b44f004242b.tar.gz astro-f192fc3a35872cb187cf631c62fa5b44f004242b.tar.zst astro-f192fc3a35872cb187cf631c62fa5b44f004242b.zip |
[ci] format
-rw-r--r-- | packages/upgrade/src/actions/install.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/upgrade/src/actions/install.ts b/packages/upgrade/src/actions/install.ts index 14011a07e..3c294a8ee 100644 --- a/packages/upgrade/src/actions/install.ts +++ b/packages/upgrade/src/actions/install.ts @@ -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}...`, |