From 9af692307fbe970cfb468c943dcdba2bfe10bba9 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 5 Jan 2024 12:51:16 +0100 Subject: [PATCH] [CLEANUP] Sort the files/directories in the `prepare-release` script (#1104) This avoids unrelated changes when this list is modified. --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 9101721..a59a6ae 100644 --- a/composer.json +++ b/composer.json @@ -176,7 +176,6 @@ "fix:php:sniff": "phpcbf Classes Configuration Tests", "phpstan:baseline": ".Build/bin/phpstan --generate-baseline --allow-empty-baseline", "prepare-release": [ - "rm .gitignore", "rm -rf .Build", "rm -rf .ddev", "rm -rf .github", @@ -185,17 +184,18 @@ "rm -rf Tests", "rm -rf tools", "rm .editorconfig", - "rm .gitattributes", - "rm .php-cs-fixer.php", "rm .eslintignore", "rm .eslintrc.json", + "rm .gitattributes", + "rm .gitignore", + "rm .php-cs-fixer.php", "rm .prettierrc.js", "rm package.json", - "rm stylelint.config.js", "rm phive.xml", + "rm phpcs.xml", "rm phpstan-baseline.neon", "rm phpstan.neon", - "rm phpcs.xml" + "rm stylelint.config.js" ] }, "scripts-descriptions": {