From ef15517adddc081cfb713cd8bd3710030f45d86f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 16 Nov 2022 09:09:21 +0100 Subject: [PATCH] Bug 32223: Remove node_modules/.bin from package.json We should not specify the node_modules/.bin part if the env is correctly configured. Signed-off-by: Tomas Cohen Arazi --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 93faa22143..d7c1209561 100644 --- a/package.json +++ b/package.json @@ -41,11 +41,11 @@ "vue-select": "4.0.0-beta.3" }, "scripts": { - "build": "node_modules/.bin/gulp build", + "build": "gulp build", "build_js": "webpack --mode production", "watch_js": "webpack --mode development --watch", - "css": "node_modules/.bin/gulp css", - "watch": "node_modules/.bin/gulp watch" + "css": "gulp css", + "watch": "gulp watch" }, "repository": { "type": "git", -- 2.39.5