Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
/.crowdin.yaml export-ignore
/.ddev export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.project export-ignore
/crowdin.yaml export-ignore
/phpunit.xml.dist export-ignore
/rector.php export-ignore
/Resources/Private/Build export-ignore
/Tests export-ignore
/Resources/Private/Sass/
/Resources/Private/gulpfile.js
/Resources/Private/package.json
/readme.md
# Enforce checkout with linux lf consistent over all plattforms
*.html text eol=lf
*.css text eol=lf
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
TYPO3_API_TOKEN: ${{ secrets.TYPO3_API_TOKEN }}
TYPO3_API_USERNAME: ${{ secrets.TYPO3_API_USERNAME }}
TYPO3_API_PASSWORD: ${{ secrets.TYPO3_API_PASSWORD }}
TYPO3_EXCLUDE_FROM_PACKAGING: '.project/tailor/excludeFromPackaging.php'

steps:
- name: Checkout repository
Expand Down
82 changes: 82 additions & 0 deletions .project/tailor/excludeFromPackaging.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?php

// Copied from https://github.com/TYPO3/tailor/blob/main/conf/ExcludeFromPackaging.php
// Extended with own files and directories

return [
'directories' => [
'.build',
'.ddev',
'.git',
'.github',
'.gitlab',
'.gitlab-ci',
'.idea',
'.phive',
'.project',
'bin',
'build',
'public',
'tailor-version-artefact',
'tailor-version-upload',
'tests',
'tools',
'vendor',
'Resources/Private/Build',
'Tests',
],
'files' => [
'CODE_OF_CONDUCT.md',
'DS_Store',
'Dockerfile',
'ExtensionBuilder.json',
'Makefile',
'bower.json',
'codeception.yml',
'composer.lock',
'crowdin.yaml',
'docker-compose.yml',
'dynamicReturnTypeMeta.json',
'editorconfig',
'env',
'eslintignore',
'eslintrc.json',
'gitattributes',
'gitignore',
'gitlab-ci.yml',
'gitmodules',
'gitreview',
'package-lock.json',
'package.json',
'phive.xml',
'php-cs-fixer.dist.php',
'php-cs-fixer.php',
'php_cs',
'php_cs.php',
'phpcs.xml',
'phpcs.xml.dist',
'phplint.yml',
'phpstan-baseline.neon',
'phpstan.neon',
'phpstan.neon.dist',
'phpstorm.meta.php',
'phpunit.xml',
'phpunit.xml.dist',
'prettierrc.json',
'rector.php',
'scrutinizer.yml',
'styleci.yml',
'stylelint.config.js',
'stylelintrc',
'travis.yml',
'tslint.yaml',
'tslint.yml',
'typoscript-lint.yaml',
'typoscript-lint.yml',
'typoscriptlint.yaml',
'typoscriptlint.yml',
'webpack.config.js',
'webpack.mix.js',
'yarn.lock',
],
];