From 96ee229b20c3491ec88bcccceac498b7c38aa14f Mon Sep 17 00:00:00 2001 From: Siddhesh Bhupendra Kuakde <65951872+SiddheshKukade@users.noreply.github.com> Date: Thu, 16 Feb 2023 16:07:24 +0530 Subject: [PATCH 1/3] Fix/err windows --- client/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/package.json b/client/package.json index ed4186d9..3ed2c35c 100644 --- a/client/package.json +++ b/client/package.json @@ -4,8 +4,8 @@ "author": "Nadav Ivgi", "license": "MIT", "scripts": { - "postinstall": "../node_modules/.bin/patch-package", - "dist": "../node_modules/.bin/babel -d dist src" + "postinstall": "cd ../node_modules/.bin && patch-package", + "dist": "cd ../ && cd node_modules && cd .bin || babel -d dist src" }, "dependencies": { "@babel/plugin-transform-react-jsx": "^7.12.11", From bcf3cb66886a52a34f99cb60b361d4e09936d19c Mon Sep 17 00:00:00 2001 From: Siddhesh Bhupendra Kuakde Date: Thu, 16 Feb 2023 16:43:46 +0530 Subject: [PATCH 2/3] Update package.json --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 3ed2c35c..de573758 100644 --- a/client/package.json +++ b/client/package.json @@ -5,7 +5,7 @@ "license": "MIT", "scripts": { "postinstall": "cd ../node_modules/.bin && patch-package", - "dist": "cd ../ && cd node_modules && cd .bin || babel -d dist src" + "dist": "cd ../ && cd node_modules && cd .bin && babel -d dist src" }, "dependencies": { "@babel/plugin-transform-react-jsx": "^7.12.11", From a9ff1b17618c8df4cd4bacb463b368699624b97d Mon Sep 17 00:00:00 2001 From: Siddhesh Bhupendra Kuakde Date: Thu, 16 Feb 2023 23:05:41 +0530 Subject: [PATCH 3/3] Update client/package.json combined commands Co-authored-by: Chase --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index de573758..2a0e1cdb 100644 --- a/client/package.json +++ b/client/package.json @@ -5,7 +5,7 @@ "license": "MIT", "scripts": { "postinstall": "cd ../node_modules/.bin && patch-package", - "dist": "cd ../ && cd node_modules && cd .bin && babel -d dist src" + "dist": "cd ../node_modules/.bin && babel -d dist src" }, "dependencies": { "@babel/plugin-transform-react-jsx": "^7.12.11",