From 53ee6b4894732005f5f4ba761296bc7908a765e0 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 31 Jul 2024 01:50:23 +0100 Subject: [PATCH] Simplify .gitignore configuration These files have been added to the `sculpin-site` template in Build Configs. --- .gitignore | 8 +++++--- build.yaml | 6 ------ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index f22750d6a..d679d63f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,13 @@ # Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. +/.phpunit.cache /.phpunit.result.cache /output_*/ /vendor/ +# Front-end assets. +node_modules +source/build + /.direnv/ -/.phpunit.cache/ -/assets/node_modules/ -/source/build/ diff --git a/build.yaml b/build.yaml index 81aa13b87..9378b366e 100644 --- a/build.yaml +++ b/build.yaml @@ -10,9 +10,3 @@ flake: - nodejs - php82 - php82Packages.composer - -git: - ignore: - - '/.phpunit.cache/' - - '/assets/node_modules/' - - '/source/build/'