From 2166a4fa64a850a17b7d7da81af90d0ada2ab771 Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Mon, 11 Sep 2023 09:15:01 +0200 Subject: [PATCH] remove pnpm of CI' --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ae0b82f..6c60ac2 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,13 @@ install: vendor/autoload.php public/build/manifest.json php artisan down php artisan optimize:clear php artisan migrate --force - pnpm run build + npm run build php artisan optimize php artisan up vendor/autoload.php: composer.lock - composer install + php composer.phar install touch vendor/autoload.php public/build/manifest.json: package.json - pnpm install + npm install