From 395281c2998815b787b3702634176ff4f5990c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Uzna=C5=84ski?= Date: Mon, 8 Jul 2024 09:40:01 +0200 Subject: [PATCH] [TASK] Move xliff linter to xliff dir (#1356) Part of: #1186 --- Build/{bin => xliff}/xliff-lint | 0 CHANGELOG.md | 1 + composer.json | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) rename Build/{bin => xliff}/xliff-lint (100%) diff --git a/Build/bin/xliff-lint b/Build/xliff/xliff-lint similarity index 100% rename from Build/bin/xliff-lint rename to Build/xliff/xliff-lint diff --git a/CHANGELOG.md b/CHANGELOG.md index 19409c6..0108d65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Add support for PostgreSQL 16 (#1271) ### Changed +- Move xliff configuration to Build xliff dir (#1356) - Move tests configuration to Build dir (#1352) - Stop storing development tool PHARs in the repository (#1277) - !!! Require a storage PID for the tea list (#1223) diff --git a/composer.json b/composer.json index 2630bf0..8076038 100644 --- a/composer.json +++ b/composer.json @@ -163,7 +163,7 @@ ], "ci:tests:unit": ".Build/bin/phpunit -c Build/phpunit/UnitTests.xml Tests/Unit", "ci:ts:lint": "typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript", - "ci:xliff:lint": "php Build/bin/xliff-lint lint:xliff Resources/Private/Language", + "ci:xliff:lint": "php Build/xliff/xliff-lint lint:xliff Resources/Private/Language", "ci:yaml:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' \\( -name '*.yaml' -o -name '*.yml' \\) | xargs -r php ./.Build/bin/yaml-lint", "coverage:create-directories": "mkdir -p .Build/logs .Build/coverage", "docs:generate": "docker run --rm --pull always -v $(pwd):/project -it ghcr.io/typo3-documentation/render-guides:latest --config=Documentation",