mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[CLEANUP] Sort the files/directories in the prepare-release script (#1104)

This avoids unrelated changes when this list is modified.
This commit is contained in:
Oliver Klee 2024-01-05 12:51:16 +01:00 committed by GitHub
parent fe14d28e57
commit 9af692307f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,7 +176,6 @@
"fix:php:sniff": "phpcbf Classes Configuration Tests", "fix:php:sniff": "phpcbf Classes Configuration Tests",
"phpstan:baseline": ".Build/bin/phpstan --generate-baseline --allow-empty-baseline", "phpstan:baseline": ".Build/bin/phpstan --generate-baseline --allow-empty-baseline",
"prepare-release": [ "prepare-release": [
"rm .gitignore",
"rm -rf .Build", "rm -rf .Build",
"rm -rf .ddev", "rm -rf .ddev",
"rm -rf .github", "rm -rf .github",
@ -185,17 +184,18 @@
"rm -rf Tests", "rm -rf Tests",
"rm -rf tools", "rm -rf tools",
"rm .editorconfig", "rm .editorconfig",
"rm .gitattributes",
"rm .php-cs-fixer.php",
"rm .eslintignore", "rm .eslintignore",
"rm .eslintrc.json", "rm .eslintrc.json",
"rm .gitattributes",
"rm .gitignore",
"rm .php-cs-fixer.php",
"rm .prettierrc.js", "rm .prettierrc.js",
"rm package.json", "rm package.json",
"rm stylelint.config.js",
"rm phive.xml", "rm phive.xml",
"rm phpcs.xml",
"rm phpstan-baseline.neon", "rm phpstan-baseline.neon",
"rm phpstan.neon", "rm phpstan.neon",
"rm phpcs.xml" "rm stylelint.config.js"
] ]
}, },
"scripts-descriptions": { "scripts-descriptions": {