Run prettier on everything (#104)

This commit is contained in:
Will Chen
2025-05-06 23:02:28 -07:00
committed by GitHub
parent 744ea68ac8
commit 0d56651220
168 changed files with 1980 additions and 1907 deletions

View File

@@ -14,7 +14,7 @@ export function registerNodeHandlers() {
"handling ipc: nodejs-status for platform:",
platform(),
"and arch:",
arch()
arch(),
);
// Run checks in parallel
const [nodeVersion, pnpmVersion] = await Promise.all([
@@ -23,7 +23,7 @@ export function registerNodeHandlers() {
// If not, try to install it using corepack.
// If both fail, then pnpm is not available.
runShellCommand(
"pnpm --version || (corepack enable pnpm && pnpm --version) || (npm install -g pnpm@latest-10 && pnpm --version)"
"pnpm --version || (corepack enable pnpm && pnpm --version) || (npm install -g pnpm@latest-10 && pnpm --version)",
),
]);
// Default to mac download url.