From f5f7787808a2880b11e788709bfd6232ff37215c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Sun, 1 Dec 2024 22:27:54 +0100 Subject: [PATCH] Ditch npx --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2b01006..4ee2324 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "scripts": { "prod:build": "echo 'The build process'", - "scss:cs": "npx stylelint resources/sass/*.scss", - "js:eslint": "npx eslint resources/js/*.js" + "scss:cs": "stylelint resources/sass/*.scss", + "js:eslint": "eslint resources/js/*.js" } }