From 34563f9362bbadff6c45585dd639490d3857e819 Mon Sep 17 00:00:00 2001 From: Paolo Tesei Date: Wed, 19 Jun 2024 16:57:13 +0200 Subject: [PATCH] fix yarn path for volta compability --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b11c8877..9772e0a1 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "build": "yarn webpack --config config/webpack.prod.js", "lint:css": "node_modules/.bin/stylelint \"src/scss/**/*.scss\"", "lint:js": "node_modules/.bin/eslint \"src/js/**/*.js\"", - "lint": "node_modules/.bin/concurrently \"yarn lint:css\" \"yarn lint:js\"", + "lint": "node_modules/.bin/concurrently \"npx yarn lint:css\" \"npx yarn lint:js\"", "bundle-report": "yarn build && yarn webpack-bundle-analyzer dist/stats.json", "image": "yarn node config/image-sizes.js" },