From c79b0340c5afc95bd5cda6b54779377b3fb8607e Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Fri, 24 May 2024 11:52:23 +0200 Subject: [PATCH] remove unnecesary src and test dir from phel-config --- composer.json | 2 +- phel-config.php | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 5b80007..a6566db 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ ], "require": { "php": ">=8.2", - "phel-lang/phel-lang": "^0.13", + "phel-lang/phel-lang": "^0.14", "symfony/routing": "^6.4 || ^7.0" }, "scripts": { diff --git a/phel-config.php b/phel-config.php index 112c290..ec40c36 100644 --- a/phel-config.php +++ b/phel-config.php @@ -5,9 +5,8 @@ use Phel\Config\PhelConfig; return (new PhelConfig()) - ->setSrcDirs(['src']) - ->setTestDirs(['tests']) ->setIgnoreWhenBuilding([ 'performance.phel', 'local.phel' - ]); + ]) +;