From 49528525b29ae72990a3cd2340ee40489f92d93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Jablo=C3=B1ski?= <43938777+GermanJablo@users.noreply.github.com> Date: Fri, 9 May 2025 14:06:24 -0300 Subject: [PATCH] parallelize eslint script (still showing logs results in serial) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 79930f4428..401d87fb5a 100644 --- a/package.json +++ b/package.json @@ -74,9 +74,9 @@ "docker:start": "docker compose -f test/docker-compose.yml up -d", "docker:stop": "docker compose -f test/docker-compose.yml down", "force:build": "pnpm run build:core:force", - "lint": "turbo run lint --concurrency 1 --continue", + "lint": "turbo run lint --log-order=grouped --continue", "lint-staged": "lint-staged", - "lint:fix": "turbo run lint:fix --concurrency 1 --continue", + "lint:fix": "turbo run lint:fix --log-order=grouped --continue", "obliterate-playwright-cache-macos": "rm -rf ~/Library/Caches/ms-playwright && find /System/Volumes/Data/private/var/folders -type d -name 'playwright*' -exec rm -rf {} +", "prepare": "husky", "prepare-run-test-against-prod": "pnpm bf && rm -rf test/packed && rm -rf test/node_modules && rm -rf app && rm -f test/pnpm-lock.yaml && pnpm run script:pack --all --no-build --dest test/packed && pnpm runts test/setupProd.ts && cd test && pnpm i --ignore-workspace && cd ..",