From 5a0cff6d6a6a44f65e0653ac5711d220b24c5242 Mon Sep 17 00:00:00 2001 From: Karishma Date: Fri, 28 Mar 2025 21:03:01 +0530 Subject: [PATCH 1/4] feat: only install chromium binary --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3d3b455..acf54028 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ npm install cd .. # make sure playwright is properly initialized -npx playwright install +npx playwright install chromium npx playwright install-deps # get back to the root directory From 7c15823e38ddc75dc556b14e63f84abef4027b86 Mon Sep 17 00:00:00 2001 From: Karishma Date: Fri, 28 Mar 2025 21:04:20 +0530 Subject: [PATCH 2/4] feat: install system deps only for chromium --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acf54028..c7ee47db 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ cd .. # make sure playwright is properly initialized npx playwright install chromium -npx playwright install-deps +npx playwright install-deps chromium # get back to the root directory cd .. From f690c7fed042b187752c099d347bfa9ef6aefa1e Mon Sep 17 00:00:00 2001 From: Karishma Date: Fri, 28 Mar 2025 21:07:33 +0530 Subject: [PATCH 3/4] chore: better command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7ee47db..97a8e9c9 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ npm install # get back to the root directory cd .. -# make sure playwright is properly initialized +# install chromium and its dependencies npx playwright install chromium npx playwright install-deps chromium From 9b6006cafc16ddffe0a368dfb9a37e9fedd519db Mon Sep 17 00:00:00 2001 From: Karishma Date: Fri, 28 Mar 2025 21:08:09 +0530 Subject: [PATCH 4/4] feat: use single command --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 97a8e9c9..ac1a09ca 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,7 @@ npm install cd .. # install chromium and its dependencies -npx playwright install chromium -npx playwright install-deps chromium +npx playwright install --with-deps chromium # get back to the root directory cd ..